Author: ion
Date: Wed Sep 4 11:08:43 2013
New Revision: 59987
URL:
http://svn.reactos.org/svn/reactos?rev=59987&view=rev
Log:
[USER32]: Remove another stack check. Should fix ole32 marshall tests.
Modified:
trunk/reactos/win32ss/user/user32/windows/message.c
Modified: trunk/reactos/win32ss/user/user32/windows/message.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/user32/window…
==============================================================================
--- trunk/reactos/win32ss/user/user32/windows/message.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/user32/windows/message.c [iso-8859-1] Wed Sep 4 11:08:43
2013
@@ -1431,7 +1431,7 @@
{
MSG AnsiMsg;
MSG UnicodeMsg;
- ULONG_PTR LowLimit;
+ //ULONG_PTR LowLimit;
BOOL Hook = FALSE, MsgOverride = FALSE, Dialog;
LRESULT Result = 0, PreResult = 0;
DWORD Data = 0;
@@ -1441,14 +1441,14 @@
WARN("IntCallWindowsProcA() called with WndProc = NULL!\n");
return FALSE;
}
-
+#if 0
LowLimit = (ULONG_PTR)NtCurrentTeb()->NtTib.StackLimit;
if (((ULONG_PTR)&lParam - LowLimit) < PAGE_SIZE )
{
ERR("IntCallWindowsProcA() Exceeded Stack!\n");
return FALSE;
}
-
+#endif
if (pWnd)
Dialog = (pWnd->fnid == FNID_DIALOG);
else