From: Sven Strickroth Date: Fri, 14 Aug 2015 20:21:17 +0000 (+0200) Subject: config: close config file handle in case of error X-Git-Tag: v2.6.0-rc0~42^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=54d160ec0deebfa7bf0cfc499c69ff5364b118c6;p=thirdparty%2Fgit.git config: close config file handle in case of error When updating an existing configuration file, we did not always close the filehandle that is reading from the current configuration file when we encountered an error (e.g. when unsetting a variable that does not exist). Signed-off-by: Sven Strickroth Signed-off-by: Sup Yut Sum Reviewed-by: Eric Sunshine Signed-off-by: Junio C Hamano --- diff --git a/config.c b/config.c index 9fd275f2c2..83caa2546e 100644 --- a/config.c +++ b/config.c @@ -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(lock->filename.buf, 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: