From aa04a0a6d31477dbf5b3a65cf79a690e44dcd4a7 Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Wed, 12 Dec 2018 08:03:49 +0900 Subject: [PATCH] [WIN32SS] Replace ASSERT(FALSE); in IntGhostWindowFromHungWindow (#1116) CORE-11944 --- win32ss/user/ntuser/ghost.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32ss/user/ntuser/ghost.c b/win32ss/user/ntuser/ghost.c index efbc5d2a647..3342fea1557 100644 --- a/win32ss/user/ntuser/ghost.c +++ b/win32ss/user/ntuser/ghost.c @@ -54,7 +54,7 @@ HWND FASTCALL IntGhostWindowFromHungWindow(PWND pHungWnd) HWND hwndGhost; if (!IntGetAtomFromStringOrAtom(&GhostProp, &Atom)) - ASSERT(FALSE); + return NULL; hwndGhost = UserGetProp(pHungWnd, Atom, TRUE); if (hwndGhost)