From 5b7d9087520581a7b2aecb33a78acb1ac3a7ae1a Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 19 Jul 2003 03:23:05 +0000 Subject: * eval.c (thgroup_add): typo again. sorry. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- eval.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'eval.c') diff --git a/eval.c b/eval.c index 8469d5cafa..1a774323ee 100644 --- a/eval.c +++ b/eval.c @@ -9934,14 +9934,6 @@ thgroup_add(group, thread) rb_secure(4); th = rb_thread_check(thread); - if (OBJ_FROZEN(th->thgroup)) { - rb_raise(rb_eThreadError, "can't move from the frozen thread group"); - } - Data_Get_Struct(th->thgroup, struct thgroup, data); - if (data->enclosed) { - rb_raise(rb_eThreadError, "can't move from the enclosed thread group"); - } - if (OBJ_FROZEN(group)) { rb_raise(rb_eThreadError, "can't move to the frozen thread group"); } @@ -9954,6 +9946,14 @@ thgroup_add(group, thread) rb_warn("terminated thread"); return; } + if (OBJ_FROZEN(th->thgroup)) { + rb_raise(rb_eThreadError, "can't move from the frozen thread group"); + } + Data_Get_Struct(th->thgroup, struct thgroup, data); + if (data->enclosed) { + rb_raise(rb_eThreadError, "can't move from the enclosed thread group"); + } + th->thgroup = group; return group; } -- cgit v1.2.3