summaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 18:54:52 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-24 18:54:52 +0000
commite885517639c2bc1eacedfffe68679c4882b2fa5f (patch)
tree4fd02de14d300845364775e9472f9ffc2f8006f5 /compile.c
parentcf41125e3ab4a26292b718192ea717e873dbe684 (diff)
* compile.c (iseq_compile_each): fix stack consistency bug.
a patch from Yusuke ENDOH <mame AT tsg.ne.jp> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14629 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index 9f79c056fa..a3dea41793 100644
--- a/compile.c
+++ b/compile.c
@@ -2973,7 +2973,7 @@ iseq_compile_each(rb_iseq_t *iseq, LINK_ANCHOR *ret, NODE * node, int poped)
if (iseq->compile_data->redo_label != 0) {
/* next in while loop */
debugs("next in while\n");
- pop_after_throw = 1;
+ pop_after_throw = poped;
goto next_by_throw;
}
else if (iseq->compile_data->end_label) {