Skip to content

Commit

Permalink
Adjust callinfo env and target_class; ref #3429
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed Feb 16, 2017
1 parent b165708 commit 5e3c329
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mrbgems/mruby-eval/src/eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,8 @@ create_proc_from_string(mrb_state *mrb, char *s, int len, mrb_value binding, con
e->cioff = c->ci - c->cibase - 1;
e->stack = c->ci->stackent;
MRB_SET_ENV_STACK_LEN(e, c->ci[-1].proc->body.irep->nlocals);
c->ci->env = e;
c->ci->target_class = mrb->object_class;
c->ci->env = 0;
proc->env = e;
patch_irep(mrb, proc->body.irep, 0);

Expand Down

0 comments on commit 5e3c329

Please sign in to comment.