qingdoa daoo : kernel: Fix reported address space limit to be in keeping with ntdll.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jun 19 03:35:17 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: 43fa835e0eafb0dd22ec9603cb0f63f9d46b7479
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=43fa835e0eafb0dd22ec9603cb0f63f9d46b7479

Author: qingdoa daoo <qingdao33122 at 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;




More information about the wine-cvs mailing list