Module: wine Branch: refs/heads/master Commit: 43fa835e0eafb0dd22ec9603cb0f63f9d46b7479 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=43fa835e0eafb0dd22ec9603...
Author: qingdoa daoo qingdao33122@yahoo.com Date: Sat Jun 17 14:10:07 2006 +0800
kernel: Fix reported address space limit to be in keeping with ntdll.
---
dlls/kernel/cpu.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/kernel/cpu.c b/dlls/kernel/cpu.c index 6ba35ac..b077ad6 100644 --- a/dlls/kernel/cpu.c +++ b/dlls/kernel/cpu.c @@ -333,7 +333,7 @@ VOID WINAPI GetSystemInfo(
/* FIXME: the two entries below should be computed somehow... */ cachedsi.lpMinimumApplicationAddress = (void *)0x00010000; - cachedsi.lpMaximumApplicationAddress = (void *)0x7FFFFFFF; + cachedsi.lpMaximumApplicationAddress = (void *)0x7FFEFFFF; cachedsi.dwActiveProcessorMask = 1; cachedsi.dwNumberOfProcessors = 1; cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;