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_trace.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm_trace.c') diff --git a/vm_trace.c b/vm_trace.c index a84821e2b0..ebf8e6929d 100644 --- a/vm_trace.c +++ b/vm_trace.c @@ -416,7 +416,7 @@ rb_suppress_tracing(VALUE (*func)(VALUE), VALUE arg) if (!tracing) th->vm->trace_running--; if (state) { - JUMP_TAG(state); + TH_JUMP_TAG(th, state); } th->state = outer_state; -- cgit v1.2.3