diff options
author | Yang Tse <yangsita@gmail.com> | 2012-03-16 20:11:22 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2012-03-16 20:11:22 +0100 |
commit | 0c8e36c18afc18b2de4c345c70828cf545a8715b (patch) | |
tree | bc6f0201b07744c749a83976e62c998ef255f38d /lib/http_proxy.c | |
parent | 862bb7bade597eb73128af5d875788c150ca8fcb (diff) | |
download | curl-0c8e36c18afc18b2de4c345c70828cf545a8715b.tar.gz |
http_proxy.c: fix OOM handling
Diffstat (limited to 'lib/http_proxy.c')
-rw-r--r-- | lib/http_proxy.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/http_proxy.c b/lib/http_proxy.c index b12d37011..e2d3869fd 100644 --- a/lib/http_proxy.c +++ b/lib/http_proxy.c @@ -128,12 +128,15 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn, aprintf("%s%s%s:%hu", conn->bits.ipv6_ip?"[":"", hostname, conn->bits.ipv6_ip?"]":"", remote_port); - if(!hostheader) + if(!hostheader) { + free(req_buffer); return CURLE_OUT_OF_MEMORY; + } if(!Curl_checkheaders(data, "Host:")) { host = aprintf("Host: %s\r\n", hostheader); if(!host) { + free(hostheader); free(req_buffer); return CURLE_OUT_OF_MEMORY; } |