From 21a7b21b65d00b7879368d0448dbeda18abff0de Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 16 Feb 2009 11:53:22 +0100 Subject: [PATCH] secur32: Properly initialize the helper structure when fork support is missing. --- dlls/secur32/ntlm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/secur32/ntlm.c b/dlls/secur32/ntlm.c index 38c5134f35b..7e44dd7ddae 100644 --- a/dlls/secur32/ntlm.c +++ b/dlls/secur32/ntlm.c @@ -1982,6 +1982,7 @@ void SECUR32_initNTLMSP(void) /* Cheat and allocate a helper anyway, so cleanup later will work. */ helper = HeapAlloc(GetProcessHeap(),0, sizeof(NegoHelper)); helper->major = helper->minor = helper->micro = -1; + helper->pipe_in = helper->pipe_out = -1; } else check_version(helper);