From 84f94652b019d8024fde8e8208fc4fc7c225870e Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 5 May 2016 03:22:20 +0000 Subject: use TH_JUMP_TAG * vm_eval.c (rb_eval_cmd, rb_catch_obj): use TH_JUMP_TAG with the same rb_thread_t used for TH_PUSH_TAG, instead of JUMP_TAG with the current thread global variable. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54914 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm.c') diff --git a/vm.c b/vm.c index 94fbfdda48..edc3f20602 100644 --- a/vm.c +++ b/vm.c @@ -1047,7 +1047,7 @@ vm_invoke_proc(rb_thread_t *th, rb_proc_t *proc, VALUE self, th->safe_level = stored_safe; if (state) { - JUMP_TAG(state); + TH_JUMP_TAG(th, state); } return val; } @@ -1859,7 +1859,7 @@ vm_exec(rb_thread_t *th) vm_pop_frame(th); th->errinfo = (VALUE)err; TH_TMPPOP_TAG(); - JUMP_TAG(state); + TH_JUMP_TAG(th, state); } else { th->cfp = RUBY_VM_PREVIOUS_CONTROL_FRAME(th->cfp); -- cgit v1.2.3