secur32: Fix another GetProcessHeap vs GetProcessHeap().

This commit is contained in:
Uwe Bonnes 2006-06-19 18:01:53 +02:00 committed by Alexandre Julliard
parent 6831c8dfcb
commit a8a7976bc0
1 changed files with 1 additions and 1 deletions

View File

@ -1226,7 +1226,7 @@ void SECUR32_initNTLMSP(void)
if((ret = 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(PNegoHelper));
helper->version = -1;
}
else