secur32: Memory allocation size fix.

This commit is contained in:
Andrew Talbot 2008-05-12 20:50:53 +01:00 committed by Alexandre Julliard
parent 5bf9e88cce
commit 140c0423f5
1 changed files with 1 additions and 1 deletions

View File

@ -1981,7 +1981,7 @@ void SECUR32_initNTLMSP(void)
if(fork_helper(&helper, ntlm_auth, args) != SEC_E_OK) if(fork_helper(&helper, ntlm_auth, args) != SEC_E_OK)
{ {
/* Cheat and allocate a helper anyway, so cleanup later will work. */ /* Cheat and allocate a helper anyway, so cleanup later will work. */
helper = HeapAlloc(GetProcessHeap(),0, sizeof(PNegoHelper)); helper = HeapAlloc(GetProcessHeap(),0, sizeof(NegoHelper));
helper->major = helper->minor = helper->micro = -1; helper->major = helper->minor = helper->micro = -1;
} }
else else