forked from lix-project/lix
Fix assertion failure in storePathToHash()
Fixes https://github.com/NixOS/nix/issues/2015.
This commit is contained in:
parent
6185d25e52
commit
e606cd412f
|
@ -253,6 +253,8 @@ std::string Store::getUri()
|
||||||
|
|
||||||
bool Store::isValidPath(const Path & storePath)
|
bool Store::isValidPath(const Path & storePath)
|
||||||
{
|
{
|
||||||
|
assertStorePath(storePath);
|
||||||
|
|
||||||
auto hashPart = storePathToHash(storePath);
|
auto hashPart = storePathToHash(storePath);
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue