diff options
Diffstat (limited to 'third_party/nix/src/libexpr/eval.cc')
-rw-r--r-- | third_party/nix/src/libexpr/eval.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/nix/src/libexpr/eval.cc b/third_party/nix/src/libexpr/eval.cc index 679d3ca99617..c6804ee1143d 100644 --- a/third_party/nix/src/libexpr/eval.cc +++ b/third_party/nix/src/libexpr/eval.cc @@ -372,7 +372,7 @@ EvalState::EvalState(const Strings& _searchPath, const ref<Store>& store) clearValue(vEmptySet); vEmptySet.type = tAttrs; - vEmptySet.attrs = allocBindings(0); + vEmptySet.attrs = Bindings::NewGC(); createBaseEnv(); } @@ -857,7 +857,7 @@ void ExprAttrs::eval(EvalState& state, Env& env, Value& v) { if (hasOverrides) { Value* vOverrides = v.attrs->find(overrides->first)->second.value; state.forceAttrs(*vOverrides); - Bindings* newBnds = state.allocBindings(/* capacity = */ 0); + Bindings* newBnds = Bindings::NewGC(); for (auto& i : *v.attrs) { // TODO(tazjin): copy constructor? newBnds->push_back(i.second); } |