]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
tool_cfgable: free {proxy_}cipher13_list on exit
authorJan Venekamp <1422460+jan2000@users.noreply.github.com>
Sat, 4 May 2024 01:05:51 +0000 (03:05 +0200)
committerDaniel Gustafsson <daniel@yesql.se>
Sun, 5 May 2024 09:13:06 +0000 (11:13 +0200)
Author: Jan Venekamp
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Closes: #13531
src/tool_cfgable.c

index bb271583263db3109faa93a345dc1c3c3946a9f8..5564e250d33782047237cea48880b32ab3853b05 100644 (file)
@@ -114,6 +114,8 @@ static void free_config_fields(struct OperationConfig *config)
   Curl_safefree(config->doh_url);
   Curl_safefree(config->cipher_list);
   Curl_safefree(config->proxy_cipher_list);
+  Curl_safefree(config->cipher13_list);
+  Curl_safefree(config->proxy_cipher13_list);
   Curl_safefree(config->cert);
   Curl_safefree(config->proxy_cert);
   Curl_safefree(config->cert_type);