ntdll: Ignore the preload start address if it is zero.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2017-10-09 10:44:29 +02:00
parent fb8226f639
commit 0374d86c57
1 changed files with 2 additions and 1 deletions

View File

@ -1597,7 +1597,8 @@ void virtual_init(void)
preload_reserve_start = (void *)start;
preload_reserve_end = (void *)end;
/* some apps start inside the DOS area */
address_space_start = min( address_space_start, preload_reserve_start );
if (preload_reserve_start)
address_space_start = min( address_space_start, preload_reserve_start );
}
}