ntdll: Reserve memory areas on all platforms.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2020-07-04 21:16:07 +02:00
parent 695bf7a645
commit 086072ca6a
1 changed files with 2 additions and 2 deletions

View File

@ -286,7 +286,7 @@ static void reserve_area( void *addr, void *end )
static void mmap_init( const struct preload_info *preload_info )
{
#ifdef __i386__
#ifndef _WIN64
#ifndef __APPLE__
char stack;
char * const stack_ptr = &stack;
@ -329,7 +329,7 @@ static void mmap_init( const struct preload_info *preload_info )
#endif
reserve_area( user_space_limit, 0 );
#elif defined(__x86_64__) || defined(__aarch64__)
#else
if (preload_info) return;
/* if we don't have a preloader, try to reserve the space now */