Clear env before top-level execution; fix #4581

This commit is contained in:
Yukihiro "Matz" Matsumoto
2019-07-18 00:35:21 +09:00
parent 2a410c0e1b
commit 94a1f488a6
+1
View File
@@ -2834,6 +2834,7 @@ mrb_top_run(mrb_state *mrb, struct RProc *proc, mrb_value self, unsigned int sta
return mrb_vm_run(mrb, proc, self, stack_keep);
}
if (mrb->c->ci == mrb->c->cibase) {
mrb->c->ci->env = NULL;
return mrb_vm_run(mrb, proc, self, stack_keep);
}
ci = cipush(mrb);