Skip to content

Commit

Permalink
tool_cfgable: free the ssl_ec_curves on exit
Browse files Browse the repository at this point in the history
Follow-up to ede125b

Closes curl#10097
  • Loading branch information
bagder committed Dec 15, 2022
1 parent c20b35d commit 24d494c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/tool_cfgable.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,12 @@ static void free_config_fields(struct OperationConfig *config)
Curl_safefree(config->engine);
Curl_safefree(config->etag_save_file);
Curl_safefree(config->etag_compare_file);
Curl_safefree(config->ssl_ec_curves);
Curl_safefree(config->request_target);
Curl_safefree(config->customrequest);
Curl_safefree(config->krblevel);

Curl_safefree(config->oauth_bearer);
Curl_safefree(config->sasl_authzid);

Curl_safefree(config->unix_socket_path);
Curl_safefree(config->writeout);
Curl_safefree(config->proto_default);
Expand Down

0 comments on commit 24d494c

Please sign in to comment.