From 58fdef4c05842e8f373268ee6e6809df130c0016 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 9 Oct 2003 10:11:48 +0000 Subject: * eval.c (rb_thread_start_0): non-volatile should be restored from volatile. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ eval.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 59c08cc55..7f9603f85 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Oct 9 19:11:44 2003 Nobuyoshi Nakada + + * eval.c (rb_thread_start_0): non-volatile should be restored from + volatile. + Thu Oct 9 17:43:36 2003 Nobuyoshi Nakada * eval.c (proc_save_safe_level, proc_get_safe_level, diff --git a/eval.c b/eval.c index fa0daaa73..033134cb3 100644 --- a/eval.c +++ b/eval.c @@ -9436,11 +9436,12 @@ rb_thread_start_0(fn, arg, th) curr_thread = th; th->result = (*fn)(arg, th); } + th = th_save; } else if (TAG_DST()) { + th = th_save; th->result = prot_tag->retval; } - th = th_save; POP_TAG(); status = th->status; -- cgit