mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:32:56 +00:00
Manually applying Gunnars patch because it's easier this way - and a good chance to review mods.
svn path=/trunk/; revision=3717
This commit is contained in:
parent
2e3612cc58
commit
0d78d25da5
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: startup.c,v 1.44 2002/09/08 10:23:03 chorns Exp $
|
||||
/* $Id: startup.c,v 1.45 2002/11/07 16:36:50 robd Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -121,10 +121,10 @@ LdrInitializeThunk (ULONG Unknown1,
|
|||
|
||||
/* create process heap */
|
||||
RtlInitializeHeapManager();
|
||||
Peb->ProcessHeap = RtlCreateHeap(0,
|
||||
Peb->ProcessHeap = RtlCreateHeap(HEAP_GROWABLE,
|
||||
(PVOID)HEAP_BASE,
|
||||
NTHeaders->OptionalHeader.SizeOfHeapCommit,
|
||||
NTHeaders->OptionalHeader.SizeOfHeapReserve,
|
||||
NTHeaders->OptionalHeader.SizeOfHeapCommit,
|
||||
NULL,
|
||||
NULL);
|
||||
if (Peb->ProcessHeap == 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue