* Remove unused pointer. CID 1223187.
CORE-7975

svn path=/trunk/; revision=63986
This commit is contained in:
Amine Khaldi
2014-08-30 11:38:16 +00:00
parent 0cca44bdb8
commit d7031577fc
+1 -2
View File
@@ -4586,11 +4586,10 @@ CheckMenuItem(HMENU hmenu,
UINT uIDCheckItem,
UINT uCheck)
{
PMENU pMenu;
PITEM item;
DWORD Ret;
if (!(pMenu = ValidateHandle(hmenu, TYPE_MENU)))
if (!ValidateHandle(hmenu, TYPE_MENU))
return -1;
if (!(item = MENU_FindItem( &hmenu, &uIDCheckItem, uCheck ))) return -1;