diff options
author | Jeff King <peff@peff.net> | 2017-09-05 08:14:26 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-06 17:19:53 +0900 |
commit | 45c6b1ed24724f7f3041a60a4313df7d9c4b9909 (patch) | |
tree | 57ba55efa89a67abe3c54ca3c11a7c50af93662e /gpg-interface.c | |
parent | d88ef6605120fd75be38376ba147623cf427bf73 (diff) | |
download | git-45c6b1ed24724f7f3041a60a4313df7d9c4b9909.tar.gz |
always check return value of close_tempfile
If close_tempfile() encounters an error, then it deletes the
tempfile and resets the "struct tempfile". But many code
paths ignore the return value and continue to use the
tempfile. Instead, we should generally treat this the same
as a write() error.
Note that in the postimage of some of these cases our error
message will be bogus after a failed close because we look
at tempfile->filename (either directly or via get_tempfile_path).
But after the failed close resets the tempfile object, this
is guaranteed to be the empty string. That will be addressed
in a future patch (because there are many more cases of the
same problem than just these instances).
Note also in the hunk in gpg-interface.c that it's fine to
call delete_tempfile() in the error path, even if
close_tempfile() failed and already deleted the file. The
tempfile code is smart enough to know the second deletion is
a noop.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gpg-interface.c')
-rw-r--r-- | gpg-interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gpg-interface.c b/gpg-interface.c index 455b6c04b4..05ca6ecbfd 100644 --- a/gpg-interface.c +++ b/gpg-interface.c @@ -209,13 +209,13 @@ int verify_signed_buffer(const char *payload, size_t payload_size, fd = mks_tempfile_t(&temp, ".git_vtag_tmpXXXXXX"); if (fd < 0) return error_errno(_("could not create temporary file")); - if (write_in_full(fd, signature, signature_size) < 0) { + if (write_in_full(fd, signature, signature_size) < 0 || + close_tempfile(&temp) < 0) { error_errno(_("failed writing detached signature to '%s'"), temp.filename.buf); delete_tempfile(&temp); return -1; } - close_tempfile(&temp); argv_array_pushl(&gpg.args, gpg_program, |