Skip to content
Snippets Groups Projects
Commit bbb72b7b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Gisle: free used memory better

parent 785bad38
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment