From: Katayama Hirofumi MZ Date: Tue, 11 Dec 2018 23:03:49 +0000 (+0900) Subject: [WIN32SS] Replace ASSERT(FALSE); in IntGhostWindowFromHungWindow (#1116) X-Git-Tag: 0.4.13-dev~1048 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=aa04a0a6d31477dbf5b3a65cf79a690e44dcd4a7 [WIN32SS] Replace ASSERT(FALSE); in IntGhostWindowFromHungWindow (#1116) CORE-11944 --- 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)