From: William A. Rowe Jr Date: Wed, 6 Feb 2002 08:14:11 +0000 (+0000) Subject: A cleanup from the redundancy dept. of redundancy X-Git-Tag: 2.0.32~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5cb0ddf326501137945adf8911b42ef1a80cbebd;p=apache A cleanup from the redundancy dept. of redundancy git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93281 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/mpm/winnt/mpm_winnt.c b/server/mpm/winnt/mpm_winnt.c index 56844de5c8..263c4af461 100644 --- a/server/mpm/winnt/mpm_winnt.c +++ b/server/mpm/winnt/mpm_winnt.c @@ -1373,7 +1373,7 @@ static int create_process(apr_pool_t *p, HANDLE *child_proc, HANDLE *child_exit_ HANDLE hNullOutput; HANDLE hShareError; HANDLE hCurrentProcess = GetCurrentProcess(); - SECURITY_ATTRIBUTES sa = {sizeof(SECURITY_ATTRIBUTES), NULL, TRUE}; + SECURITY_ATTRIBUTES sa; sa.nLength = sizeof(sa); sa.bInheritHandle = TRUE;