forked from lix-project/lix
Add forgotten null check
This commit is contained in:
parent
470e27ce80
commit
b3ed32d0fd
|
@ -648,7 +648,8 @@ std::vector<std::string> AttrCursor::getListOfStrings()
|
|||
for (auto & elem : v.listItems())
|
||||
res.push_back(std::string(root->state.forceStringNoCtx(*elem)));
|
||||
|
||||
cachedValue = {root->db->setListOfStrings(getKey(), res), res};
|
||||
if (root->db)
|
||||
cachedValue = {root->db->setListOfStrings(getKey(), res), res};
|
||||
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue