Merge pull request #11553 from NixOS/mergify/bp/2.24-maintenance/pr-11548

Fix missing GC root in zipAttrsWith (backport #11548)
This commit is contained in:
Eelco Dolstra 2024-09-19 22:09:56 +02:00 committed by GitHub
commit b5154deba3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3136,7 +3136,11 @@ static void prim_zipAttrsWith(EvalState & state, const PosIdx pos, Value * * arg
std::optional<ListBuilder> list;
};
#if HAVE_BOEHMGC
std::map<Symbol, Item, std::less<Symbol>, traceable_allocator<std::pair<const Symbol, Item>>> attrsSeen;
#else
std::map<Symbol, Item> attrsSeen;
#endif
state.forceFunction(*args[0], pos, "while evaluating the first argument passed to builtins.zipAttrsWith");
state.forceList(*args[1], pos, "while evaluating the second argument passed to builtins.zipAttrsWith");