From 7430c46af697b32cd20d902b4613cea206f47d04 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 16 Feb 2004 16:40:50 +0000 Subject: [PATCH] * eval.c (rb_eval): care that another thread replace NODE_DREGX_ONCE to NODE_LIT. [ruby-dev:22920] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5740 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ eval.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index b0084231fc..1ba58dadc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Feb 17 01:35:28 2004 Tanaka Akira + + * eval.c (rb_eval): care that another thread replace NODE_DREGX_ONCE + to NODE_LIT. [ruby-dev:22920] + Tue Feb 17 01:20:57 2004 Minero Aoki * lib/fileutils.rb: new module FileUtils::DryRun. diff --git a/eval.c b/eval.c index 9d46524f0a..e4890de268 100644 --- a/eval.c +++ b/eval.c @@ -3643,6 +3643,9 @@ rb_eval(self, n) nd_set_type(node, NODE_LIT); node->nd_lit = result; break; + case NODE_LIT: + /* other thread may replace NODE_DREGX_ONCE to NODE_LIT */ + goto again; case NODE_DXSTR: result = rb_funcall(self, '`', 1, str); break;