gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 18/256: http_proxy: fix build error for CURL_DOES_C


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 18/256: http_proxy: fix build error for CURL_DOES_CONVERSIONS
Date: Fri, 06 Oct 2017 19:41:49 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 801d8765ca1a7d9ec9bbf6fa02d89597215b728f
Author: Maksim Stsepanenka <address@hidden>
AuthorDate: Wed Aug 16 18:33:33 2017 +0300

    http_proxy: fix build error for CURL_DOES_CONVERSIONS
    
    Closes https://github.com/curl/curl/pull/1793
---
 lib/http_proxy.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/http_proxy.c b/lib/http_proxy.c
index 5c5f8fb2c..5a1dc0b86 100644
--- a/lib/http_proxy.c
+++ b/lib/http_proxy.c
@@ -410,7 +410,8 @@ static CURLcode CONNECT(struct connectdata *conn,
         }
 
         /* convert from the network encoding */
-        result = Curl_convert_from_network(data, line_start, perline);
+        result = Curl_convert_from_network(data, s->line_start,
+                                           (size_t)s->perline);
         /* Curl_convert_from_network calls failf if unsuccessful */
         if(result)
           return result;

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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