From: Stephen Boyd Date: Thu, 31 Jan 2013 18:18:40 +0000 (-0800) Subject: gpg: close stderr once finished with it in verify_signed_buffer() X-Git-Tag: v1.8.1.3~5^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7dac3f83218b9f6c4c7d1c1cf093190f20d27108;p=git gpg: close stderr once finished with it in verify_signed_buffer() Failing to close the stderr pipe in verify_signed_buffer() causes git to run out of file descriptors if there are many calls to verify_signed_buffer(). An easy way to trigger this is to run git log --show-signature --merges | grep "key" on the linux kernel git repo. Eventually it will fail with error: cannot create pipe for gpg: Too many open files error: could not run gpg. Close the stderr pipe so that this can't happen. Suggested-by: Jeff King Signed-off-by: Stephen Boyd Signed-off-by: Junio C Hamano --- diff --git a/gpg-interface.c b/gpg-interface.c index ff232c8c5d..bcf55a433e 100644 --- a/gpg-interface.c +++ b/gpg-interface.c @@ -128,8 +128,10 @@ int verify_signed_buffer(const char *payload, size_t payload_size, write_in_full(gpg.in, payload, payload_size); close(gpg.in); - if (gpg_output) + if (gpg_output) { strbuf_read(gpg_output, gpg.err, 0); + close(gpg.err); + } ret = finish_command(&gpg); unlink_or_warn(path);