Add forgotten null check

This commit is contained in:
Alexander Shpilkin 2022-05-04 22:13:49 +03:00
parent 470e27ce80
commit b3ed32d0fd

View file

@ -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;
}