mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 11:33:31 +08:00
[WIN32K:NTUSER] Fix NULL pointer dereference in MENU_HideSubPopups
Fixes CORE-19367.
This commit is contained in:
parent
67c28b723e
commit
e8e770fd14
@ -3282,11 +3282,14 @@ static void FASTCALL MENU_HideSubPopups(PWND pWndOwner, PMENU Menu,
|
||||
{
|
||||
PWND pWnd;
|
||||
if (!VerifyMenu(Item->spSubMenu)) return;
|
||||
pWnd = ValidateHwndNoErr(Item->spSubMenu->hWnd);
|
||||
MENU_HideSubPopups(pWndOwner, Item->spSubMenu, FALSE, wFlags);
|
||||
MENU_SelectItem(pWndOwner, Item->spSubMenu, NO_SELECTED_ITEM, SendMenuSelect, NULL);
|
||||
TRACE("M_HSP top p hm %p pWndOwner IDMenu %p\n",top_popup_hmenu,pWndOwner->IDMenu);
|
||||
co_UserDestroyWindow(pWnd);
|
||||
pWnd = ValidateHwndNoErr(Item->spSubMenu->hWnd);
|
||||
if (pWnd != NULL)
|
||||
{
|
||||
co_UserDestroyWindow(pWnd);
|
||||
}
|
||||
|
||||
/* Native returns handle to destroyed window */
|
||||
if (!(wFlags & TPM_NONOTIFY))
|
||||
|
Loading…
Reference in New Issue
Block a user