summaryrefslogtreecommitdiff
path: root/src/gui/windows/questswindow.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-24 14:55:44 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-25 20:06:07 +0300
commit9d521a19be347703bfdbb7802d0397a59c3edd7a (patch)
tree9a4e56edc84d5cfd8ebaea17fa19296c51e1e661 /src/gui/windows/questswindow.cpp
parent841fe55e67ea467a8e2192dee5c169d282a35148 (diff)
downloadplus-9d521a19be347703bfdbb7802d0397a59c3edd7a.tar.gz
plus-9d521a19be347703bfdbb7802d0397a59c3edd7a.tar.bz2
plus-9d521a19be347703bfdbb7802d0397a59c3edd7a.tar.xz
plus-9d521a19be347703bfdbb7802d0397a59c3edd7a.zip
Add missing checks in windows.
Diffstat (limited to 'src/gui/windows/questswindow.cpp')
-rw-r--r--src/gui/windows/questswindow.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/windows/questswindow.cpp b/src/gui/windows/questswindow.cpp
index 144f9b3d0..24b11d308 100644
--- a/src/gui/windows/questswindow.cpp
+++ b/src/gui/windows/questswindow.cpp
@@ -197,6 +197,8 @@ void QuestsWindow::loadXmlFile(const std::string &fileName)
void QuestsWindow::loadQuest(const int var, const XmlNodePtr node)
{
+ if (!node)
+ return;
QuestItem *const quest = new QuestItem();
// TRANSLATORS: quests window quest name
quest->name = XML::langProperty(node, "name", _("unknown"));