mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[WIN32K:NTUSER] Fix NULL pointer dereference in MENU_HideSubPopups
Fixes CORE-19367.
This commit is contained in:
parent
67c28b723e
commit
e8e770fd14
1 changed files with 5 additions and 2 deletions
|
@ -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 a new issue