diff options
author | NIIBE Yutaka <[email protected]> | 2024-09-25 02:17:51 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2024-09-25 02:17:51 +0000 |
commit | a269a27c4ce5d4be8129c9d2c6252d3158e3683d (patch) | |
tree | 1ede41f1bd0c5f29937322cc206a83467edcfdae /common | |
parent | gpg: Fix --quick-set-expire for V5 subkey fingerprints (diff) | |
download | gnupg-a269a27c4ce5d4be8129c9d2c6252d3158e3683d.tar.gz gnupg-a269a27c4ce5d4be8129c9d2c6252d3158e3683d.zip |
common: Fix gnupg_exec_tool_stream for INEXTRA==NULL.
* common/exectool.c (gnupg_exec_tool_stream): Initialize extrapipe.
--
Fixes-commit: af6c47b2910f394faf582800d60d88e9b4dcf834
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'common')
-rw-r--r-- | common/exectool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/exectool.c b/common/exectool.c index 900020ecc..6d22e29f8 100644 --- a/common/exectool.c +++ b/common/exectool.c @@ -331,7 +331,7 @@ gnupg_exec_tool_stream (const char *pgmname, const char *argv[], #else int exceptclose[2]; #endif - gnupg_fd_t extrapipe; + gnupg_fd_t extrapipe = GNUPG_INVALID_FD; char extrafdbuf[20]; const char *argsave = NULL; int argsaveidx; |