diff options
author | Mike Hommey <mh@glandium.org> | 2019-08-26 16:49:11 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-08-26 11:10:09 -0700 |
commit | 7e927567519ade8e1e2daf19108f433703c00114 (patch) | |
tree | 5f4c4ee8a632bab331b9df0f1dd2a04c4614d482 | |
parent | Git 2.22.1 (diff) | |
download | tgif-7e927567519ade8e1e2daf19108f433703c00114.tar.xz |
http: don't leak urlmatch_config.vars
Signed-off-by: Mike Hommey <mh@glandium.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | http.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1073,6 +1073,7 @@ void http_init(struct remote *remote, const char *url, int proactive_auth) git_config(urlmatch_config_entry, &config); free(normalized_url); + string_list_clear(&config.vars, 1); #if LIBCURL_VERSION_NUM >= 0x073800 if (http_ssl_backend) { |