diff --git a/ChangeLog b/ChangeLog index e6c63f6e3d..b783f8fc29 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Dec 20 09:40:51 2007 Koichi Sasada + + * compile.c (iseq_compile_each/NODE_RETURN): fix stack consistency. + Thu Dec 20 09:42:11 2007 Yukihiro Matsumoto * bignum.c (big2str_orig): access beyond memory region cause crash diff --git a/compile.c b/compile.c index bbb43003ad..10cd85f2b0 100644 --- a/compile.c +++ b/compile.c @@ -3804,12 +3804,13 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped) } else { ADD_INSN1(ret, nd_line(node), throw, INT2FIX(0x01) /* TAG_RETURN */ ); - ADD_INSN(ret, nd_line(node), pop); + if (poped) { + ADD_INSN(ret, nd_line(node), pop); + } } break; } } - break; } case NODE_YIELD:{