Skip to content

Commit

Permalink
Revert ae4217e; fix #3619
Browse files Browse the repository at this point in the history
Reopens #3550. Those 2 issues are exclusive.
  • Loading branch information
matz committed Apr 21, 2017
1 parent 95229ee commit 15fba69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ obj_free(mrb_state *mrb, struct RBasic *obj, int end)
while (ce <= ci) {
struct REnv *e = ci->env;
if (e && !is_dead(&mrb->gc, e) &&
e->tt == MRB_TT_ENV && !MRB_ENV_STACK_SHARED_P(e)) {
e->tt == MRB_TT_ENV && MRB_ENV_STACK_SHARED_P(e)) {
mrb_env_unshare(mrb, e);
}
ci--;
Expand Down

0 comments on commit 15fba69

Please sign in to comment.