Bug 723917 - NullPointerException when removing a menu item [r=sriram]

This commit is contained in:
Matt Brubeck 2012-02-03 16:18:46 -05:00
Родитель 652e8966c3
Коммит f318a0e25c
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -905,10 +905,11 @@ abstract public class GeckoApp
ExtraMenuItem item = i.next();
if (item.id == id) {
sExtraMenuItems.remove(item);
if (sMenu == null)
return;
MenuItem menu = sMenu.findItem(id);
if (menu != null)
sMenu.removeItem(id);
return;
}
}
} else if (event.equals("Toast:Show")) {