diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-08-26 15:45:30 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-26 15:45:30 -0700 |
commit | 51e83a4898b47ff3286f1cff65c3715ee803ade9 (patch) | |
tree | 4738180b1e465bff1e666e38274fee15eb18c8de /config.c | |
parent | Sync with maint (diff) | |
parent | config: close config file handle in case of error (diff) | |
download | tgif-51e83a4898b47ff3286f1cff65c3715ee803ade9.tar.xz |
Merge branch 'ss/fix-config-fd-leak'
* ss/fix-config-fd-leak:
config: close config file handle in case of error
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1935,7 +1935,7 @@ int git_config_set_multivar_in_file(const char *config_filename, const char *key, const char *value, const char *value_regex, int multi_replace) { - int fd = -1, in_fd; + int fd = -1, in_fd = -1; int ret; struct lock_file *lock = NULL; char *filename_buf = NULL; @@ -2065,6 +2065,7 @@ int git_config_set_multivar_in_file(const char *config_filename, goto out_free; } close(in_fd); + in_fd = -1; if (chmod(get_lock_file_path(lock), st.st_mode & 07777) < 0) { error("chmod on %s failed: %s", @@ -2148,6 +2149,8 @@ out_free: free(filename_buf); if (contents) munmap(contents, contents_sz); + if (in_fd >= 0) + close(in_fd); return ret; write_err_out: |