mirror of
https://github.com/curl/curl.git
synced 2026-07-23 08:07:16 +03:00
free cookiejar string
This commit is contained in:
parent
598e8dfbfb
commit
7239ecd456
1 changed files with 2 additions and 0 deletions
|
|
@ -1532,6 +1532,8 @@ void free_config_fields(struct Configurable *config)
|
|||
curl_formfree(config->httppost);
|
||||
if(config->cacert)
|
||||
free(config->cacert);
|
||||
if(config->cookiejar)
|
||||
free(config->cookiejar);
|
||||
|
||||
curl_slist_free_all(config->quote); /* checks for config->quote == NULL */
|
||||
curl_slist_free_all(config->postquote); /* */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue