From f5a4b6a3a39a2b78d33769184d6133d5e256e02c Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 19 Jan 2016 13:09:06 +0100 Subject: common/exechelp: Fix error handling. * common/exechelp-w32.c (gnupg_spawn_process): Close the right handle. Signed-off-by: Justus Winter --- common/exechelp-w32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'common/exechelp-w32.c') diff --git a/common/exechelp-w32.c b/common/exechelp-w32.c index 7439c0b91..1b3d072ce 100644 --- a/common/exechelp-w32.c +++ b/common/exechelp-w32.c @@ -430,7 +430,7 @@ gnupg_spawn_process (const char *pgmname, const char *argv[], if (infp) es_fclose (infp); else if (inpipe[1] != INVALID_HANDLE_VALUE) - CloseHandle (outpipe[1]); + CloseHandle (inpipe[1]); if (inpipe[0] != INVALID_HANDLE_VALUE) CloseHandle (inpipe[0]); return err; @@ -466,7 +466,7 @@ gnupg_spawn_process (const char *pgmname, const char *argv[], if (infp) es_fclose (infp); else if (inpipe[1] != INVALID_HANDLE_VALUE) - CloseHandle (outpipe[1]); + CloseHandle (inpipe[1]); if (inpipe[0] != INVALID_HANDLE_VALUE) CloseHandle (inpipe[0]); return err; -- cgit v1.2.3