When we commit or roll back the lock file the fd is automatically closed, so don't do that again. Also, just keep the lock on the stack. Signed-off-by: Kristian Høgsberg <krh@xxxxxxxxxx> --- config.c | 22 +++++----------------- 1 files changed, 5 insertions(+), 17 deletions(-) diff --git a/config.c b/config.c index 49d2b42..0725563 100644 --- a/config.c +++ b/config.c @@ -754,7 +754,7 @@ int git_config_set_multivar(const char* key, const char* value, int fd = -1, in_fd; int ret; char* config_filename; - struct lock_file *lock = NULL; + struct lock_file lock; const char* last_dot = strrchr(key, '.'); config_filename = getenv(CONFIG_ENVIRONMENT); @@ -811,8 +811,7 @@ int git_config_set_multivar(const char* key, const char* value, * The lock serves a purpose in addition to locking: the new * contents of .git/config will be written into it. */ - lock = xcalloc(sizeof(struct lock_file), 1); - fd = hold_lock_file_for_update(lock, config_filename, 0); + fd = hold_lock_file_for_update(&lock, config_filename, 0); if (fd < 0) { fprintf(stderr, "could not lock config file\n"); free(store.key); @@ -955,28 +954,17 @@ int git_config_set_multivar(const char* key, const char* value, munmap(contents, contents_sz); } - if (close(fd) || commit_lock_file(lock) < 0) { + if (commit_lock_file(&lock) < 0) { fprintf(stderr, "Cannot commit config file!\n"); ret = 4; goto out_free; } - /* fd is closed, so don't try to close it below. */ - fd = -1; - /* - * lock is committed, so don't try to roll it back below. - * NOTE: Since lockfile.c keeps a linked list of all created - * lock_file structures, it isn't safe to free(lock). It's - * better to just leave it hanging around. - */ - lock = NULL; ret = 0; out_free: - if (0 <= fd) - close(fd); - if (lock) - rollback_lock_file(lock); + /* If we already committed the lock file, the rollback is a no-op. */ + rollback_lock_file(&lock); free(config_filename); return ret; -- 1.5.3.4 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html