1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Fixed crash with binOp deferRight with failed right eval

This commit is contained in:
Brian Fiete 2024-01-19 07:11:29 -05:00
parent d452978605
commit 7fcf1c09b6

View file

@ -23912,6 +23912,8 @@ void BfExprEvaluator::PerformBinaryOperation(BfAstNode* leftExpression, BfAstNod
argValues.Init(&sizedArgExprs);
ResolveArgValues(argValues, BfResolveArgsFlag_DeferParamEval);
rightArg = argValues.mResolvedArgs[0];
if (!rightArg.mTypedValue)
continue;
}
SizedArray<BfResolvedArg, 2> args;