- fixed: CallStateChain must never allow a jumping function to set the chain's overall result to successful.

This commit is contained in:
Christoph Oelckers 2016-03-04 15:11:20 +01:00
commit caf2ca0df7
2 changed files with 2 additions and 1 deletions

View file

@ -3220,7 +3220,7 @@ FxExpression *FxActionSpecialCall::Resolve(FCompileContext& ctx)
int DecoCallLineSpecial(VMFrameStack *stack, VMValue *param, int numparam, VMReturn *ret, int numret)
{
assert(numparam > 2 && numparam < 7);
assert(numparam > 2 && numparam < 8);
assert(numret == 1);
assert(param[0].Type == REGT_INT);
assert(param[1].Type == REGT_POINTER);