|
|
05bba0 |
From 4df5e14e48bd02ea2b6414d1e8ea105ab510dccd Mon Sep 17 00:00:00 2001
|
|
|
05bba0 |
From: Richard Jones <rjones@redhat.com>
|
|
|
05bba0 |
Date: Thu, 11 Jun 2015 11:40:09 +0200
|
|
|
05bba0 |
Subject: [PATCH 09/30] curl: Fix long line
|
|
|
05bba0 |
|
|
|
05bba0 |
Message-id: <1434022828-13037-3-git-send-email-rjones@redhat.com>
|
|
|
05bba0 |
Patchwork-id: 65837
|
|
|
05bba0 |
O-Subject: [RHEL-7.2 qemu-kvm v3 PATCH 02/21] curl: Fix long line
|
|
|
05bba0 |
Bugzilla: 1226684
|
|
|
05bba0 |
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
05bba0 |
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
05bba0 |
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
05bba0 |
|
|
|
05bba0 |
From: Matthew Booth <mbooth@redhat.com>
|
|
|
05bba0 |
|
|
|
05bba0 |
Signed-off-by: Matthew Booth <mbooth@redhat.com>
|
|
|
05bba0 |
Tested-by: Richard W.M. Jones <rjones@redhat.com>
|
|
|
05bba0 |
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
|
05bba0 |
|
|
|
05bba0 |
Upstream-status: f6246509be602369cfa1250965e1e62a0c62c99f
|
|
|
05bba0 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
05bba0 |
---
|
|
|
05bba0 |
block/curl.c | 3 ++-
|
|
|
05bba0 |
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
05bba0 |
|
|
|
05bba0 |
diff --git a/block/curl.c b/block/curl.c
|
|
|
05bba0 |
index a877dea..f69e337 100644
|
|
|
05bba0 |
--- a/block/curl.c
|
|
|
05bba0 |
+++ b/block/curl.c
|
|
|
05bba0 |
@@ -243,7 +243,8 @@ static void curl_multi_do(void *arg)
|
|
|
05bba0 |
case CURLMSG_DONE:
|
|
|
05bba0 |
{
|
|
|
05bba0 |
CURLState *state = NULL;
|
|
|
05bba0 |
- curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE, (char**)&state);
|
|
|
05bba0 |
+ curl_easy_getinfo(msg->easy_handle, CURLINFO_PRIVATE,
|
|
|
05bba0 |
+ (char **)&state);
|
|
|
05bba0 |
|
|
|
05bba0 |
/* ACBs for successful messages get completed in curl_read_cb */
|
|
|
05bba0 |
if (msg->data.result != CURLE_OK) {
|
|
|
05bba0 |
--
|
|
|
05bba0 |
1.8.3.1
|
|
|
05bba0 |
|