[USER32]: Remove another stack check. Should fix ole32 marshall tests.

svn path=/trunk/; revision=59987
This commit is contained in:
Alex Ionescu
2013-09-04 11:08:43 +00:00
parent d336165578
commit d32d9c72da
@@ -1431,7 +1431,7 @@ IntCallWindowProcA(BOOL IsAnsiProc,
{
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 @@ IntCallWindowProcA(BOOL IsAnsiProc,
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