commit | 6244b24906f9efa4c1d573fa79e73eaf8e557551 | [log] [tgz] |
---|---|---|
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | Sat Jul 08 10:56:28 2006 +0200 |
committer | Junio C Hamano <junkio@cox.net> | Sat Jul 08 03:28:19 2006 -0700 |
tree | 399a1683ca0fdfe776af3e86b05862257bea0417 | |
parent | a0c2089c1d48dc9969822126170d35c6e5aa141f [diff] [blame] |
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>
diff --git a/builtin-add.c b/builtin-add.c index bfbbb1b..2d25698 100644 --- a/builtin-add.c +++ b/builtin-add.c
@@ -181,7 +181,7 @@ if (active_cache_changed) { 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"); }