diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2017-05-09 12:11:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-26 05:33:56 +0200 |
commit | f7566f073fccafdd9e0ace514b25897dd55d217a (patch) | |
tree | 7a146efd5e27d23d59c46e14f8cd075bfea93536 /rerere.c | |
parent | print errno when reporting a system call error (diff) | |
download | git-f7566f073fccafdd9e0ace514b25897dd55d217a.tar.xz git-f7566f073fccafdd9e0ace514b25897dd55d217a.zip |
rerere.c: move error_errno() closer to the source system call
We are supposed to report errno from fopen(). fclose() between fopen()
and the report function could either change errno or reset it.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'rerere.c')
-rw-r--r-- | rerere.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -489,8 +489,9 @@ static int handle_file(const char *path, unsigned char *sha1, const char *output if (output) { io.io.output = fopen(output, "w"); if (!io.io.output) { + error_errno("Could not write %s", output); fclose(io.input); - return error_errno("Could not write %s", output); + return -1; } } |