diff options
author | Junio C Hamano <junkio@cox.net> | 2006-08-12 01:03:47 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-12 17:08:25 -0700 |
commit | 40aaae88adfe05be435b7bd17093d49869f3276f (patch) | |
tree | cbc2c6410884604c15a4301841b23e658cf2096a /builtin-apply.c | |
parent | fd7bcfb524a3313ef5361bdd8493ba50635f50f0 (diff) | |
download | git-40aaae88adfe05be435b7bd17093d49869f3276f.tar.gz git-40aaae88adfe05be435b7bd17093d49869f3276f.tar.xz |
Better error message when we are unable to lock the index file
Most of the callers except the one in refs.c use the function to
update the index file. Among the index writers, everybody
except write-tree dies if they cannot open it for writing.
This gives the function an extra argument, to tell it to die
when it cannot create a new file as the lockfile.
The only caller that does not have to die is write-tree, because
updating the index for the cache-tree part is optional and not
being able to do so does not affect the correctness. I think we
do not have to be so careful and make the failure into die() the
same way as other callers, but that would be a different patch.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-apply.c')
-rw-r--r-- | builtin-apply.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/builtin-apply.c b/builtin-apply.c index be2c7152c..9cf477c70 100644 --- a/builtin-apply.c +++ b/builtin-apply.c @@ -2234,12 +2234,9 @@ static int apply_patch(int fd, const char *filename, apply = 0; write_index = check_index && apply; - if (write_index && newfd < 0) { + if (write_index && newfd < 0) newfd = hold_lock_file_for_update(&lock_file, - get_index_file()); - if (newfd < 0) - die("unable to create new index file"); - } + get_index_file(), 1); if (check_index) { if (read_cache() < 0) die("unable to read index file"); |