Add "no super" check to OP_ARGARY; fix #3610

This commit is contained in:
Yukihiro "Matz" Matsumoto
2017-04-18 10:23:30 +09:00
parent c3961847cf
commit 82ab46139e
+8 -7
View File
@@ -1514,16 +1514,17 @@ RETRY_TRY_BLOCK:
int lv = (bx>>0)&0xf;
mrb_value *stack;
if (mrb->c->ci->mid == 0 || mrb->c->ci->target_class == NULL) {
mrb_value exc;
L_NOSUPER:
exc = mrb_exc_new_str_lit(mrb, E_NOMETHOD_ERROR, "super called outside of method");
mrb_exc_set(mrb, exc);
}
if (lv == 0) stack = regs + 1;
else {
struct REnv *e = uvenv(mrb, lv-1);
if (!e) {
mrb_value exc;
exc = mrb_exc_new_str_lit(mrb, E_NOMETHOD_ERROR, "super called outside of method");
mrb_exc_set(mrb, exc);
goto L_RAISE;
}
if (!e) goto L_NOSUPER;
stack = e->stack + 1;
}
if (r == 0) {