eb1a30a3d9
An updated patch was committed to Kodi after Curl added a fix to address
the original problem:
d6604524ad
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
1.8 KiB
Diff
35 lines
1.8 KiB
Diff
From 7d3c70b163bc67aeb1fdef8fd2347b39f311c584 Mon Sep 17 00:00:00 2001
|
|
From: fritsch <peter.fruehberger@gmail.com>
|
|
Date: Sun, 24 Jul 2016 20:24:07 +0200
|
|
Subject: [PATCH] Curl: Adjust multi_cleanup method which returns CURLMcode
|
|
|
|
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
|
|
(backported from upstream commit:
|
|
https://github.com/xbmc/xbmc/commit/2a8d3e7f6cffea52740b8392a3be8ec251d5ff70)
|
|
---
|
|
xbmc/filesystem/DllLibCurl.h | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/xbmc/filesystem/DllLibCurl.h b/xbmc/filesystem/DllLibCurl.h
|
|
index db97f92..9e78a91 100644
|
|
--- a/xbmc/filesystem/DllLibCurl.h
|
|
+++ b/xbmc/filesystem/DllLibCurl.h
|
|
@@ -52,7 +52,7 @@ namespace XCURL
|
|
virtual CURLMcode multi_fdset(CURLM *multi_handle, fd_set *read_fd_set, fd_set *write_fd_set, fd_set *exc_fd_set, int *max_fd)=0;
|
|
virtual CURLMcode multi_timeout(CURLM *multi_handle, long *timeout)=0;
|
|
virtual CURLMsg* multi_info_read(CURLM *multi_handle, int *msgs_in_queue)=0;
|
|
- virtual void multi_cleanup(CURL_HANDLE * handle )=0;
|
|
+ virtual CURLMcode multi_cleanup(CURLM * handle )=0;
|
|
virtual struct curl_slist* slist_append(struct curl_slist *, const char *)=0;
|
|
virtual void slist_free_all(struct curl_slist *)=0;
|
|
};
|
|
@@ -77,7 +77,7 @@ namespace XCURL
|
|
DEFINE_METHOD5(CURLMcode, multi_fdset, (CURLM *p1, fd_set *p2, fd_set *p3, fd_set *p4, int *p5))
|
|
DEFINE_METHOD2(CURLMcode, multi_timeout, (CURLM *p1, long *p2))
|
|
DEFINE_METHOD2(CURLMsg*, multi_info_read, (CURLM *p1, int *p2))
|
|
- DEFINE_METHOD1(void, multi_cleanup, (CURLM *p1))
|
|
+ DEFINE_METHOD1(CURLMcode, multi_cleanup, (CURLM *p1))
|
|
DEFINE_METHOD2(struct curl_slist*, slist_append, (struct curl_slist * p1, const char * p2))
|
|
DEFINE_METHOD1(void, slist_free_all, (struct curl_slist * p1))
|
|
DEFINE_METHOD1(const char *, easy_strerror, (CURLcode p1))
|