summaryrefslogtreecommitdiff
path: root/builtin-update-index.c
diff options
context:
space:
mode:
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>2006-07-08 08:56:28 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-07-08 10:28:19 (GMT)
commit6244b24906f9efa4c1d573fa79e73eaf8e557551 (patch)
tree399a1683ca0fdfe776af3e86b05862257bea0417 /builtin-update-index.c
parenta0c2089c1d48dc9969822126170d35c6e5aa141f (diff)
downloadgit-6244b24906f9efa4c1d573fa79e73eaf8e557551.zip
git-6244b24906f9efa4c1d573fa79e73eaf8e557551.tar.gz
git-6244b24906f9efa4c1d573fa79e73eaf8e557551.tar.bz2
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-update-index.c')
-rw-r--r--builtin-update-index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-update-index.c b/builtin-update-index.c
index ef50243..1a4200d 100644
--- a/builtin-update-index.c
+++ b/builtin-update-index.c
@@ -648,7 +648,7 @@ int cmd_update_index(int argc, const char **argv, char **envp)
finish:
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");
}