prim_mapAttrs: must be lazy to avoid infinite recursion

This commit is contained in:
volth 2018-07-05 15:33:12 +00:00
parent 841747b0e6
commit e6bf1a79d7

View file

@ -1365,10 +1365,11 @@ static void prim_mapAttrs(EvalState & state, const Pos & pos, Value * * args, Va
state.mkAttrs(v, args[1]->attrs->size());
for (auto & i : *args[1]->attrs) {
Value vName, vFun2;
mkString(vName, i.name);
state.callFunction(*args[0], vName, vFun2, pos);
state.callFunction(vFun2, *i.value, *state.allocAttr(v, i.name), pos);
Value * vName = state.allocValue();
Value * vFun2 = state.allocValue();
mkString(*vName, i.name);
state.callFunction(*args[0], *vName, *vFun2, pos);
mkApp(*state.allocAttr(v, i.name), *vFun2, *i.value);
}
}