diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-04-30 19:58:36 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-04-30 19:58:36 +0000 |
commit | bc77bf217f3a7dd21007e9dd1b62b90eb8d25070 (patch) | |
tree | b1e2c40d05893d6bfeb24633ac6fce09b5436c6d | |
parent | 37d1e9351ee5802a2ebc22592534c88c12c0ba90 (diff) |
if there's a cookiehost allocated, free that too
-rw-r--r-- | lib/url.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1217,6 +1217,8 @@ CURLcode Curl_disconnect(struct connectdata *conn) free(conn->allocptr.cookie); if(conn->allocptr.host) free(conn->allocptr.host); + if(conn->allocptr.cookiehost) + free(conn->allocptr.cookiehost); if(conn->proxyhost) free(conn->proxyhost); |