committing a parameter swap from Gunnars heap fix which I seem to have missed.

svn path=/trunk/; revision=3724
This commit is contained in:
Robert Dickenson 2002-11-10 13:38:14 +00:00
parent 77f5d4efe8
commit c2cdc52d2e

View file

@ -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);