mirror of
https://github.com/NixOS/nix
synced 2025-06-25 10:41:16 +02:00
PackageInfo::queryDrvPath(): Don't dereference an empty optional
Fixes a regression introduced in f923ed6b6a
.
https://hydra.nixos.org/build/262267313
This commit is contained in:
parent
49c6f34911
commit
d2eeabf3e6
1 changed files with 1 additions and 2 deletions
|
@ -82,8 +82,7 @@ std::optional<StorePath> PackageInfo::queryDrvPath() const
|
|||
} else
|
||||
drvPath = {std::nullopt};
|
||||
}
|
||||
drvPath.value_or(std::nullopt);
|
||||
return *drvPath;
|
||||
return drvPath.value_or(std::nullopt);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue