secur32: Memory allocation size fix.
This commit is contained in:
parent
5bf9e88cce
commit
140c0423f5
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue