1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

http_proxy: Fix tiny memory leak upon edge case connecting to proxy

Fixes #1255
This commit is contained in:
Cameron MacMinn 2017-02-08 11:14:36 -07:00 committed by Daniel Stenberg
parent a7e4348cf8
commit 7fe81ec298

View File

@ -248,7 +248,7 @@ CURLcode Curl_proxyCONNECT(struct connectdata *conn,
useragent,
proxyconn);
if(host && *host)
if(host)
free(host);
free(hostheader);