diff options
| author | Richard W.M. Jones | 2013-06-10 18:40:15 +0200 |
|---|---|---|
| committer | Kevin Wolf | 2013-06-17 17:47:59 +0200 |
| commit | 8da1aa15db2f55c42bdcea95e27b1a190d2be754 (patch) | |
| tree | 43e700ffe1d877bf66c0f6e6dbeca3f0643c63d4 | |
| parent | vmdk: byteswap VMDK4Header.desc_offset field (diff) | |
| download | qemu-8da1aa15db2f55c42bdcea95e27b1a190d2be754.tar.gz qemu-8da1aa15db2f55c42bdcea95e27b1a190d2be754.tar.xz qemu-8da1aa15db2f55c42bdcea95e27b1a190d2be754.zip | |
curl: Don't set curl options on the handle just before it's going to be deleted.
(Found by Kamil Dudka)
Signed-off-by: Richard W.M. Jones <rjones@redhat.com>
Cc: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
| -rw-r--r-- | block/curl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/block/curl.c b/block/curl.c index 0fba451e3b..6af8cb7577 100644 --- a/block/curl.c +++ b/block/curl.c @@ -452,8 +452,6 @@ static int curl_open(BlockDriverState *bs, QDict *options, int flags) if (curl_easy_perform(state->curl)) 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) |
