mirror of
https://github.com/curl/curl.git
synced 2026-04-30 04:57:51 +03:00
fix out of memory handling issue
This commit is contained in:
parent
e9ffa9a3b8
commit
0d635a1119
1 changed files with 1 additions and 1 deletions
|
|
@ -1170,7 +1170,7 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn,
|
|||
if(!host) {
|
||||
free(req_buffer);
|
||||
free(host_port);
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
}
|
||||
}
|
||||
if(!checkheaders(data, "Proxy-Connection:"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue