diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2006-07-08 10:56:28 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-08 03:28:19 -0700 |
commit | 6244b24906f9efa4c1d573fa79e73eaf8e557551 (patch) | |
tree | 399a1683ca0fdfe776af3e86b05862257bea0417 /builtin-apply.c | |
parent | a0c2089c1d48dc9969822126170d35c6e5aa141f (diff) | |
download | git-6244b24906f9efa4c1d573fa79e73eaf8e557551.tar.gz git-6244b24906f9efa4c1d573fa79e73eaf8e557551.tar.xz |
Close the index file between writing and committing
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-apply.c')
-rw-r--r-- | builtin-apply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-apply.c b/builtin-apply.c index e9ead002d..c3af48917 100644 --- a/builtin-apply.c +++ b/builtin-apply.c @@ -2323,7 +2323,7 @@ int cmd_apply(int argc, const char **argv, char **envp) if (write_index) { if (write_cache(newfd, active_cache, active_nr) || - commit_lock_file(&lock_file)) + close(newfd) || commit_lock_file(&lock_file)) die("Unable to write new index file"); } |