From e0d14cf8d3c809a0a5291823d3a962a4835a8f6e Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 9 Aug 2015 00:25:50 +0300 Subject: Add some missing checks to gui found by paranucker. --- src/gui/windows/inventorywindow.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gui/windows/inventorywindow.h') diff --git a/src/gui/windows/inventorywindow.h b/src/gui/windows/inventorywindow.h index 062ac6bce..eca01ab05 100644 --- a/src/gui/windows/inventorywindow.h +++ b/src/gui/windows/inventorywindow.h @@ -128,7 +128,7 @@ class InventoryWindow final : public Window, void slotsChanged(Inventory *const inventory) override final; bool isMainInventory() const A_WARN_UNUSED - { return mInventory->isMainInventory(); } + { return mInventory ? mInventory->isMainInventory() : false; } /** * Returns true if any instances exist. @@ -174,7 +174,7 @@ class InventoryWindow final : public Window, static WindowList invInstances; Inventory *mInventory; - ItemContainer *mItems; + ItemContainer *mItems A_NONNULLPOINTER; Button *mUseButton; Button *mDropButton; -- cgit v1.2.3-60-g2f50