From 92e24f809b75d4b077fcde302b1f7d5cf9bac6bb Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Sat, 28 Oct 2017 21:44:56 +0900 Subject: Should check if `callinfo` stack is popped before updating the stack. This is a resurrection of 75c374c, which is accidentally removed by 93f5f22; Fix #3507 #3512 #3518 #3521 --- src/vm.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/vm.c b/src/vm.c index b1e2b624b..b050dfbeb 100644 --- a/src/vm.c +++ b/src/vm.c @@ -1845,10 +1845,11 @@ RETRY_TRY_BLOCK: } if (mrb->exc) { + mrb_callinfo *ci0; mrb_value *stk; L_RAISE: - ci = mrb->c->ci; + ci0 = ci = mrb->c->ci; if (ci == mrb->c->cibase) { if (ci->ridx == 0) goto L_FTOP; goto L_RESCUE; @@ -1900,7 +1901,9 @@ RETRY_TRY_BLOCK: irep = proc->body.irep; pool = irep->pool; syms = irep->syms; - mrb->c->stack = ci[1].stackent; + if (ci < ci0) { + mrb->c->stack = ci[1].stackent; + } stack_extend(mrb, irep->nregs); pc = mrb->c->rescue[--ci->ridx]; } -- cgit v1.2.3