From fa153c62dd2798804a8940da36cfa17d203bd81e Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Tue, 22 Mar 2005 16:42:25 +0000 Subject: [PATCH] Increase PE reserve area size to 512Mb. --- loader/preloader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/preloader.c b/loader/preloader.c index 74a10d8dc4a..97d36066b28 100644 --- a/loader/preloader.c +++ b/loader/preloader.c @@ -108,7 +108,7 @@ static struct wine_preload_info preload_info[] = { { (void *)0x00000000, 0x00110000 }, /* DOS area */ { (void *)0x80000000, 0x01000000 }, /* shared heap */ - { (void *)0x00110000, 0x0fef0000 }, /* default PE exe range (may be set with WINEPRELOADRESERVE) */ + { (void *)0x00110000, 0x1fef0000 }, /* PE exe range (may be set with WINEPRELOADRESERVE), defaults to 512mb */ { 0, 0 } /* end of list */ };