mirror of
https://github.com/curl/curl.git
synced 2026-07-22 09:07:17 +03:00
Gisle: free used memory better
This commit is contained in:
parent
785bad388b
commit
bbb72b7b6b
1 changed files with 4 additions and 0 deletions
|
|
@ -2623,6 +2623,10 @@ static void free_config_fields(struct Configurable *config)
|
|||
free(config->random_file);
|
||||
if(config->egd_file)
|
||||
free(config->egd_file);
|
||||
if(config->trace_dump)
|
||||
free(config->trace_dump);
|
||||
if(config->cipher_list)
|
||||
free(config->cipher_list);
|
||||
if(config->userpwd)
|
||||
free(config->userpwd);
|
||||
if(config->postfields)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue