diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-11 12:25:30 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-11 12:25:30 +0000 |
commit | acfa131c8cc94930064c23561892a83295aaffd3 (patch) | |
tree | 67a87f92bc8928841c723562c452f7ac98292fa5 | |
parent | 793d0e27e1e752c961dd886dcd106c67f8bc8513 (diff) |
memory leak fixed when re-using connections with proxy user+passwd
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 */ |