mirror of
https://github.com/curl/curl.git
synced 2024-12-15 06:40:09 +08:00
url: fix cookielist memleak when curl_easy_reset
- Free set.cookelist in Curl_freeset instead of Curl_close. Prior to this change the cookielist linked list wasn't freed by curl_easy_reset which calls Curl_freeset to free all set. Bug: https://github.com/curl/curl/issues/10694#issuecomment-1458619157 Reported-by: Sergey Ryabinin Closes https://github.com/curl/curl/pull/10709
This commit is contained in:
parent
297ad6ae18
commit
b559ef6f36
@ -341,6 +341,11 @@ void Curl_freeset(struct Curl_easy *data)
|
||||
data->state.url = NULL;
|
||||
|
||||
Curl_mime_cleanpart(&data->set.mimepost);
|
||||
|
||||
#ifndef CURL_DISABLE_COOKIES
|
||||
curl_slist_free_all(data->set.cookielist);
|
||||
data->set.cookielist = NULL;
|
||||
#endif
|
||||
}
|
||||
|
||||
/* free the URL pieces */
|
||||
@ -431,9 +436,6 @@ CURLcode Curl_close(struct Curl_easy **datap)
|
||||
Curl_dyn_free(&data->state.headerb);
|
||||
Curl_safefree(data->state.ulbuf);
|
||||
Curl_flush_cookies(data, TRUE);
|
||||
#ifndef CURL_DISABLE_COOKIES
|
||||
curl_slist_free_all(data->set.cookielist); /* clean up list */
|
||||
#endif
|
||||
Curl_altsvc_save(data, data->asi, data->set.str[STRING_ALTSVC]);
|
||||
Curl_altsvc_cleanup(&data->asi);
|
||||
Curl_hsts_save(data, data->hsts, data->set.str[STRING_HSTS]);
|
||||
|
Loading…
Reference in New Issue
Block a user