summaryrefslogtreecommitdiff
path: root/src/gui/models/namesmodel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/models/namesmodel.cpp')
-rw-r--r--src/gui/models/namesmodel.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/models/namesmodel.cpp b/src/gui/models/namesmodel.cpp
index ed0d78269..b3137d264 100644
--- a/src/gui/models/namesmodel.cpp
+++ b/src/gui/models/namesmodel.cpp
@@ -47,6 +47,8 @@ std::string NamesModel::getElementAt(int i)
void NamesModel::fillFromArray(const char *const *const arr, std::size_t sz)
{
+ if (!arr)
+ return;
for (size_t f = 0; f < sz; f ++)
mNames.push_back(gettext(arr[f]));
}