diff --git a/engine/vm.c b/engine/vm.c index e3f84c2..d9f99b4 100644 --- a/engine/vm.c +++ b/engine/vm.c @@ -1902,7 +1902,7 @@ static sxi32 VmByteCodeExec( if(pLastRef) { *pLastRef = pTos->nIdx; } - /* Ensure we are in active or context frame. Force abort all loops */ + /* Ensure we are in active frame. Force abort all loops */ if(pInstr->p3) { /* Called from a return statement */ while(pVm->pFrame->pParent && (pVm->pFrame->iFlags & VM_FRAME_ACTIVE) == 0) { VmLeaveFrame(&(*pVm));