mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
committing a parameter swap from Gunnars heap fix which I seem to have missed.
svn path=/trunk/; revision=3724
This commit is contained in:
parent
77f5d4efe8
commit
c2cdc52d2e
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: dllmain.c,v 1.3 2002/09/08 10:23:08 chorns Exp $
|
||||
/* $Id: dllmain.c,v 1.4 2002/11/10 13:38:14 robd Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS system libraries
|
||||
|
@ -24,7 +24,7 @@ WINBOOL STDCALL DllMain(HINSTANCE hInstance, ULONG Reason, PVOID Reserved)
|
|||
switch (Reason)
|
||||
{
|
||||
case DLL_PROCESS_ATTACH:
|
||||
Secur32Heap = RtlCreateHeap(0, NULL, 4096, 0, NULL, NULL);
|
||||
Secur32Heap = RtlCreateHeap(0, NULL, 0, 4096, NULL, NULL);
|
||||
if (Secur32Heap == 0)
|
||||
{
|
||||
return(FALSE);
|
||||
|
|
Loading…
Reference in a new issue