Default ctor to be sure Item is init to 0

This commit is contained in:
jief 2020-03-05 10:37:15 +03:00
parent 640da74dd2
commit 6c6f440b99

View File

@ -272,6 +272,7 @@ public:
class REFIT_MENU_ITEM_IEM_ABSTRACT : public REFIT_MENU_ENTRY_OTHER {
public:
INPUT_ITEM *Item;
REFIT_MENU_ITEM_IEM_ABSTRACT() : Item(0) {}
virtual REFIT_MENU_ITEM_IEM_ABSTRACT* getREFIT_MENU_ITEM_IEM_ABSTRACT() { return this; };
};