aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2008-01-23 22:22:12 +0000
committerDaniel Stenberg <daniel@haxx.se>2008-01-23 22:22:12 +0000
commitc914e6ea5dad4dc6281b189a9b1f20bc77c223c8 (patch)
treebd7ffea19fa9d6cc6ac7cd3769acdbcc6428b93d /lib/http.c
parent79cb74f03a4fa5512812cc8c8e35d735a099b35c (diff)
"Igor" pointed out that CURLOPT_COOKIELIST set to "ALL" leaked memory, and so
did "SESS". Fixed now.
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 1dcdc0f91..89f5c7615 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -2374,7 +2374,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done)
}
co = co->next; /* next cookie please */
}
- Curl_cookie_freelist(store); /* free the cookie list */
+ Curl_cookie_freelist(store, FALSE); /* free the cookie list */
}
if(addcookies && (CURLE_OK == result)) {
if(!count)