mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[USER32]
* Fix uninitialized cases. CID 1223182. Jim please review. CORE-7975 svn path=/trunk/; revision=63656
This commit is contained in:
parent
06c5c37b0a
commit
62e20c7114
1 changed files with 1 additions and 1 deletions
|
@ -4046,7 +4046,7 @@ static INT FASTCALL MenuTrackMenu(HMENU hmenu, UINT wFlags, INT x, INT y,
|
|||
*/
|
||||
static BOOL FASTCALL MenuInitTracking(HWND hWnd, HMENU hMenu, BOOL bPopup, UINT wFlags)
|
||||
{
|
||||
ROSMENUINFO MenuInfo;
|
||||
ROSMENUINFO MenuInfo = {0};
|
||||
|
||||
TRACE("hwnd=%p hmenu=%p\n", hWnd, hMenu);
|
||||
|
||||
|
|
Loading…
Reference in a new issue