The current context may be changed in `mrb_vm_exec`; ref #3668 #4104

parent cab6b0f3
...@@ -973,15 +973,15 @@ mrb_vm_run(mrb_state *mrb, struct RProc *proc, mrb_value self, unsigned int stac ...@@ -973,15 +973,15 @@ mrb_vm_run(mrb_state *mrb, struct RProc *proc, mrb_value self, unsigned int stac
stack_clear(c->stack + stack_keep, nregs - stack_keep); stack_clear(c->stack + stack_keep, nregs - stack_keep);
c->stack[0] = self; c->stack[0] = self;
result = mrb_vm_exec(mrb, proc, irep->iseq); result = mrb_vm_exec(mrb, proc, irep->iseq);
if (c->ci - c->cibase > cioff) {
c->ci = c->cibase + cioff;
}
if (mrb->c != c) { if (mrb->c != c) {
if (mrb->c->fib) { if (mrb->c->fib) {
mrb_write_barrier(mrb, (struct RBasic*)mrb->c->fib); mrb_write_barrier(mrb, (struct RBasic*)mrb->c->fib);
} }
mrb->c = c; mrb->c = c;
} }
else if (c->ci - c->cibase > cioff) {
c->ci = c->cibase + cioff;
}
return result; return result;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment