mirror of
https://github.com/curl/curl.git
synced 2026-07-23 01:27:16 +03:00
http_proxy: fix build error for CURL_DOES_CONVERSIONS
Closes https://github.com/curl/curl/pull/1793
This commit is contained in:
parent
870d849d48
commit
801d8765ca
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue