summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-09-03 19:17:59 -0700
committerJunio C Hamano <gitster@pobox.com>2015-09-03 19:17:59 -0700
commit8136099a318a3c2c8883fba8dd3f570fc332ead6 (patch)
treeb9c5fa44a3d33f50c0c98ef1020938082efe077d
parentdc4e7b024436694fe380ef8edd51a307107e959f (diff)
parent54d160ec0deebfa7bf0cfc499c69ff5364b118c6 (diff)
downloadgit-8136099a318a3c2c8883fba8dd3f570fc332ead6.tar.gz
Merge branch 'ss/fix-config-fd-leak' into maint
* ss/fix-config-fd-leak: config: close config file handle in case of error
-rw-r--r--config.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/config.c b/config.c
index 8adc15a447..0e532b8287 100644
--- a/config.c
+++ b/config.c
@@ -1954,7 +1954,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;
@@ -2084,6 +2084,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",
@@ -2167,6 +2168,8 @@ out_free:
free(filename_buf);
if (contents)
munmap(contents, contents_sz);
+ if (in_fd >= 0)
+ close(in_fd);
return ret;
write_err_out: