diff options
Diffstat (limited to 'third_party/nix/src/libexpr/attr-path.cc')
-rw-r--r-- | third_party/nix/src/libexpr/attr-path.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/nix/src/libexpr/attr-path.cc b/third_party/nix/src/libexpr/attr-path.cc index 3a467504aa63..1815b5e510d3 100644 --- a/third_party/nix/src/libexpr/attr-path.cc +++ b/third_party/nix/src/libexpr/attr-path.cc @@ -81,7 +81,7 @@ Value* findAlongAttrPath(EvalState& state, const std::string& attrPath, format("attribute '%1%' in selection path '%2%' not found") % attr % attrPath); } - v = &*a->value; + v = &*(a->second).value; } else if (apType == apIndex) { |