Browse Source

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>
maint
Johannes Schindelin 19 years ago committed by Junio C Hamano
parent
commit
6244b24906
  1. 2
      builtin-add.c
  2. 2
      builtin-apply.c
  3. 2
      builtin-read-tree.c
  4. 2
      builtin-rm.c
  5. 2
      builtin-update-index.c
  6. 3
      builtin-write-tree.c
  7. 2
      checkout-index.c

2
builtin-add.c

@ -181,7 +181,7 @@ int cmd_add(int argc, const char **argv, char **envp) @@ -181,7 +181,7 @@ int cmd_add(int argc, const char **argv, char **envp)

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");
}


2
builtin-apply.c

@ -2323,7 +2323,7 @@ int cmd_apply(int argc, const char **argv, char **envp) @@ -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");
}


2
builtin-read-tree.c

@ -1038,7 +1038,7 @@ int cmd_read_tree(int argc, const char **argv, char **envp) @@ -1038,7 +1038,7 @@ int cmd_read_tree(int argc, const char **argv, char **envp)
}

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");
return 0;
}

2
builtin-rm.c

@ -147,7 +147,7 @@ int cmd_rm(int argc, const char **argv, char **envp) @@ -147,7 +147,7 @@ int cmd_rm(int argc, const char **argv, char **envp)

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");
}


2
builtin-update-index.c

@ -648,7 +648,7 @@ int cmd_update_index(int argc, const char **argv, char **envp) @@ -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");
}


3
builtin-write-tree.c

@ -35,7 +35,8 @@ int write_tree(unsigned char *sha1, int missing_ok, const char *prefix) @@ -35,7 +35,8 @@ int write_tree(unsigned char *sha1, int missing_ok, const char *prefix)
missing_ok, 0) < 0)
die("git-write-tree: error building trees");
if (0 <= newfd) {
if (!write_cache(newfd, active_cache, active_nr))
if (!write_cache(newfd, active_cache, active_nr)
&& !close(newfd))
commit_lock_file(lock_file);
}
/* Not being able to write is fine -- we are only interested

2
checkout-index.c

@ -311,7 +311,7 @@ int main(int argc, char **argv) @@ -311,7 +311,7 @@ int main(int argc, char **argv)

if (0 <= newfd &&
(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");
return 0;
}

Loading…
Cancel
Save