Author: jimtabor Date: Wed Feb 22 00:25:13 2017 New Revision: 73876
URL: http://svn.reactos.org/svn/reactos?rev=73876&view=rev Log: [NtUser] - If an appication hangs other than suspended use Hung test to prevent locking the whole system. Quick fix for CORE-10078.
Modified: trunk/reactos/win32ss/user/ntuser/painting.c
Modified: trunk/reactos/win32ss/user/ntuser/painting.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/paintin... ============================================================================== --- trunk/reactos/win32ss/user/ntuser/painting.c [iso-8859-1] (original) +++ trunk/reactos/win32ss/user/ntuser/painting.c [iso-8859-1] Wed Feb 22 00:25:13 2017 @@ -1111,7 +1111,7 @@ } else { - if (IsThreadSuspended(pwndTemp->head.pti)) + if (IsThreadSuspended(pwndTemp->head.pti) || MsqIsHung(pwndTemp->head.pti)) { UpdateTheadChildren(pwndTemp, hRgn); }