Author: jimtabor
Date: Thu Mar  3 17:32:20 2011
New Revision: 50962

URL: http://svn.reactos.org/svn/reactos?rev=50962&view=rev
Log:
[Win32k]
- Missed the clearing of the clip region for the window at the end of of its 
life. The mouse is looking for the window, doing so, scanning through all of 
them, even the ones that are at deaths door.


Modified:
    trunk/reactos/subsystems/win32/win32k/ntuser/window.c

Modified: trunk/reactos/subsystems/win32/win32k/ntuser/window.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/ntuser/window.c?rev=50962&r1=50961&r2=50962&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/ntuser/window.c [iso-8859-1] 
(original)
+++ trunk/reactos/subsystems/win32/win32k/ntuser/window.c [iso-8859-1] Thu Mar  
3 17:32:20 2011
@@ -472,6 +472,7 @@
    if(Window->hrgnClip)
    {
       GreDeleteObject(Window->hrgnClip);
+      Window->hrgnClip = NULL;
    }
 
 //   ASSERT(Window != NULL);


Reply via email to