From a0350e5964c1edba90bf6cf4bd7e2d5b64eaa386 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 3 Jan 2008 11:26:48 +0000 Subject: * eval_jump.c (rb_f_catch): Resotre cfp if catched thrown object. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14870 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval_jump.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'eval_jump.c') diff --git a/eval_jump.c b/eval_jump.c index 948ac635be..dbc3794a59 100644 --- a/eval_jump.c +++ b/eval_jump.c @@ -105,6 +105,7 @@ rb_f_catch(int argc, VALUE *argv) int state; VALUE val = Qnil; /* OK */ rb_thread_t *th = GET_THREAD(); + rb_control_frame_t *saved_cfp = th->cfp; rb_scan_args(argc, argv, "01", &tag); if (argc == 0) { @@ -118,6 +119,7 @@ rb_f_catch(int argc, VALUE *argv) val = rb_yield_0(1, &tag); } else if (state == TAG_THROW && RNODE(th->errinfo)->u1.value == tag) { + th->cfp = saved_cfp; val = th->tag->retval; th->errinfo = Qnil; state = 0; -- cgit v1.2.3