mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 12:05:06 -05:00
socks.c: Do not modify and invalidate calculated response length
Second commit to fix issue #944 regarding SOCKS5 error handling. Reported-by: David Kalnischkies
This commit is contained in:
parent
59580e12ba
commit
cc3384a254
@ -702,10 +702,9 @@ CURLcode Curl_SOCKS5(const char *proxy_name,
|
|||||||
/* decrypt_gssapi_blockread already read the whole packet */
|
/* decrypt_gssapi_blockread already read the whole packet */
|
||||||
#endif
|
#endif
|
||||||
if(len > 10) {
|
if(len > 10) {
|
||||||
len -= 10;
|
|
||||||
result = Curl_blockread_all(conn, sock, (char *)&socksreq[10],
|
result = Curl_blockread_all(conn, sock, (char *)&socksreq[10],
|
||||||
len, &actualread);
|
len - 10, &actualread);
|
||||||
if(result || (len != actualread)) {
|
if(result || ((len - 10) != actualread)) {
|
||||||
failf(data, "Failed to receive SOCKS5 connect request ack.");
|
failf(data, "Failed to receive SOCKS5 connect request ack.");
|
||||||
return CURLE_COULDNT_CONNECT;
|
return CURLE_COULDNT_CONNECT;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user