From: Daniel Stenberg Date: Mon, 11 Aug 2003 12:25:30 +0000 (+0000) Subject: memory leak fixed when re-using connections with proxy user+passwd X-Git-Tag: curl-7_10_7~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=acfa131c8cc94930064c23561892a83295aaffd3;p=thirdparty%2Fcurl.git memory leak fixed when re-using connections with proxy user+passwd --- diff --git a/lib/url.c b/lib/url.c index 46245a5ced..9fd1ce5762 100644 --- a/lib/url.c +++ b/lib/url.c @@ -2882,6 +2882,8 @@ static CURLcode CreateConnection(struct SessionHandle *data, free(old_conn->user); free(old_conn->passwd); + free(old_conn->proxyuser); + free(old_conn->proxypasswd); free(old_conn); /* we don't need this anymore */