aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-06 06:22:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-06 06:22:11 +0000
commit73a2f671646a6f2a4097bc38060dac0583f0e1fd (patch)
tree141be5a4550c3d9a5ac7fe33fb33ed67d6295fc1
parent5e9cfca2d4fe158a9e2c5fac699b9dfe014b845f (diff)
downloadruby-73a2f671646a6f2a4097bc38060dac0583f0e1fd.tar.gz
* gc.c (gc_mark_children): ignores T_ZOMBIE.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--gc.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e69b7e5ba9..a65820a404 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Oct 6 15:22:08 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * gc.c (gc_mark_children): ignores T_ZOMBIE.
+
Mon Oct 6 12:45:20 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* test/ruby/test_module.rb (TestModule#_wrap_assertion): add
diff --git a/gc.c b/gc.c
index bbbac05320..c467cb1d62 100644
--- a/gc.c
+++ b/gc.c
@@ -1517,6 +1517,7 @@ gc_mark_children(rb_objspace_t *objspace, VALUE ptr, int lev)
case T_FLOAT:
case T_BIGNUM:
+ case T_ZOMBIE:
break;
case T_MATCH: