Module: wine Branch: refs/heads/master Commit: a8a7976bc0fa0246d7ff095821f4d62dbd96ff16 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=a8a7976bc0fa0246d7ff0958...
Author: Uwe Bonnes bon@elektron.ikp.physik.tu-darmstadt.de Date: Mon Jun 19 18:01:53 2006 +0200
secur32: Fix another GetProcessHeap vs GetProcessHeap().
---
dlls/secur32/ntlm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/secur32/ntlm.c b/dlls/secur32/ntlm.c index 07beb39..97cecba 100644 --- a/dlls/secur32/ntlm.c +++ b/dlls/secur32/ntlm.c @@ -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