[Pkg-gnupg-commit] [gnupg2] 48/205: common/exechelp: Fix opening the 'nul' device.
Daniel Kahn Gillmor
dkg at fifthhorseman.net
Wed May 11 08:38:13 UTC 2016
This is an automated email from the git hooks/post-receive script.
dkg pushed a commit to branch experimental
in repository gnupg2.
commit 8857590006266da200427f2d4f9e8c27fbc89ed9
Author: Justus Winter <justus at g10code.com>
Date: Wed Jan 20 12:13:35 2016 +0100
common/exechelp: Fix opening the 'nul' device.
* common/exechelp-w32.c (gnupg_spawn_process): Fix opening the 'nul'
device.
Signed-off-by: Justus Winter <justus at g10code.com>
---
common/exechelp-w32.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/common/exechelp-w32.c b/common/exechelp-w32.c
index 1b3d072..e01be64 100644
--- a/common/exechelp-w32.c
+++ b/common/exechelp-w32.c
@@ -483,12 +483,12 @@ gnupg_spawn_process (const char *pgmname, const char *argv[],
if (err)
return err;
- if (inpipe[0] != INVALID_HANDLE_VALUE)
+ if (inpipe[0] == INVALID_HANDLE_VALUE)
nullhd[0] = w32_open_null (0);
- if (outpipe[1] != INVALID_HANDLE_VALUE)
- nullhd[1] = w32_open_null (0);
- if (errpipe[1] != INVALID_HANDLE_VALUE)
- nullhd[2] = w32_open_null (0);
+ if (outpipe[1] == INVALID_HANDLE_VALUE)
+ nullhd[1] = w32_open_null (1);
+ if (errpipe[1] == INVALID_HANDLE_VALUE)
+ nullhd[2] = w32_open_null (1);
/* Start the process. Note that we can't run the PREEXEC function
because this might change our own environment. */
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gnupg/gnupg2.git
More information about the Pkg-gnupg-commit
mailing list