mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[USER32]: Remove another stack check. Should fix ole32 marshall tests.
svn path=/trunk/; revision=59987
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user