Commit 140c0423 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

secur32: Memory allocation size fix.

parent 5bf9e88c
......@@ -1981,7 +1981,7 @@ void SECUR32_initNTLMSP(void)
if(fork_helper(&helper, ntlm_auth, args) != SEC_E_OK)
{
/* 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;
}
else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment