summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b704e58)
raw | patch | inline | side by side (parent: b704e58)
author | Junio C Hamano <junkio@cox.net> | |
Tue, 27 Mar 2007 19:55:44 +0000 (12:55 -0700) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 27 Mar 2007 19:56:01 +0000 (12:56 -0700) |
This is in the same spirit as earlier fix to write_sha1_from_fd().
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
sha1_file.c | patch | blob | history |
diff --git a/sha1_file.c b/sha1_file.c
index 42aef331f2e028d625dd2f6354cda2dfd55e71e0..9c260384201857eb32d07c87e1178fd3947968ee 100644 (file)
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -2020,7 +2020,8 @@ int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned cha
if (write_buffer(fd, compressed, size) < 0)
die("unable to write sha1 file");
fchmod(fd, 0444);
- close(fd);
+ if (close(fd))
+ die("unable to write sha1 file");
free(compressed);
return move_temp_to_file(tmpfile, filename);