qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-trivial] [PATCH] curl: Don't set curl options on the handle just b


From: Richard W.M. Jones
Subject: [Qemu-trivial] [PATCH] curl: Don't set curl options on the handle just before it's going to be deleted.
Date: Mon, 10 Jun 2013 14:19:07 +0100

From: "Richard W.M. Jones" <address@hidden>

(Found by Kamil Dudka)

Signed-off-by: Richard W.M. Jones <address@hidden>
---
 block/curl.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/block/curl.c b/block/curl.c
index b634ccf..bf31efe 100644
--- a/block/curl.c
+++ b/block/curl.c
@@ -453,7 +453,6 @@ static int curl_open(BlockDriverState *bs, QDict *options, 
int flags)
         goto out;
     curl_easy_getinfo(state->curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &d);
     curl_easy_setopt(state->curl, CURLOPT_WRITEFUNCTION, (void *)curl_read_cb);
-    curl_easy_setopt(state->curl, CURLOPT_NOBODY, 0);
     if (d)
         s->len = (size_t)d;
     else if(!s->len)
-- 
1.8.2.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]