mirror of
https://github.com/NixOS/nix.git
synced 2025-02-21 11:22:35 +00:00
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 New Issue
Block a user