mirror of
https://github.com/curl/curl.git
synced 2026-08-06 01:26:14 +03:00
"Igor" pointed out that CURLOPT_COOKIELIST set to "ALL" leaked memory, and so
did "SESS". Fixed now.
This commit is contained in:
parent
79cb74f03a
commit
c914e6ea5d
5 changed files with 23 additions and 9 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue