summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fileops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fileops.c b/src/fileops.c
index c01ff64db..7f8418d7a 100644
--- a/src/fileops.c
+++ b/src/fileops.c
@@ -222,6 +222,7 @@ int git_futils_writebuffer(
if ((error = p_write(fd, git_buf_cstr(buf), git_buf_len(buf))) < 0) {
giterr_set(GITERR_OS, "Could not write to '%s'", path);
(void)p_close(fd);
+ return error;
}
if ((error = p_close(fd)) < 0)