Author: hbelusca
Date: Thu May 26 00:53:54 2016
New Revision: 71403

URL: http://svn.reactos.org/svn/reactos?rev=71403&view=rev
Log:
[USER32]: Remove a leftover from r59868.

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/windows/message.c?rev=71403&r1=71402&r2=71403&view=diff
==============================================================================
--- trunk/reactos/win32ss/user/user32/windows/message.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/user32/windows/message.c [iso-8859-1] Thu May 26 
00:53:54 2016
@@ -1539,7 +1539,6 @@
 {
   MSG AnsiMsg;
   MSG UnicodeMsg;
-  //ULONG_PTR LowLimit;
   BOOL Hook = FALSE, MsgOverride = FALSE, Dialog;
   LRESULT Result = 0, PreResult = 0;
   DWORD Data = 0;
@@ -1552,14 +1551,7 @@
       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


Reply via email to