summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--threadproc/win32/proc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/threadproc/win32/proc.c b/threadproc/win32/proc.c
index cb33a0507..017840547 100644
--- a/threadproc/win32/proc.c
+++ b/threadproc/win32/proc.c
@@ -613,15 +613,15 @@ APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new,
si.hStdInput = (attr->child_in)
? attr->child_in->filehand
- : INVALID_HANDLE_VALUE;
+ : GetStdHandle(STD_INPUT_HANDLE);
si.hStdOutput = (attr->child_out)
? attr->child_out->filehand
- : INVALID_HANDLE_VALUE;
+ : GetStdHandle(STD_OUTPUT_HANDLE);
si.hStdError = (attr->child_err)
? attr->child_err->filehand
- : INVALID_HANDLE_VALUE;
+ : GetStdHandle(STD_ERROR_HANDLE);
}
rv = CreateProcessW(wprg, wcmd, /* Executable & Command line */
NULL, NULL, /* Proc & thread security attributes */
@@ -662,15 +662,15 @@ APR_DECLARE(apr_status_t) apr_proc_create(apr_proc_t *new,
si.hStdInput = (attr->child_in)
? attr->child_in->filehand
- : INVALID_HANDLE_VALUE;
+ : GetStdHandle(STD_INPUT_HANDLE);
si.hStdOutput = (attr->child_out)
? attr->child_out->filehand
- : INVALID_HANDLE_VALUE;
+ : GetStdHandle(STD_OUTPUT_HANDLE);
si.hStdError = (attr->child_err)
? attr->child_err->filehand
- : INVALID_HANDLE_VALUE;
+ : GetStdHandle(STD_ERROR_HANDLE);
}
rv = CreateProcessA(progname, cmdline, /* Command line */