1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
nobu 2008-10-06 06:22:11 +00:00
parent 5e9cfca2d4
commit 73a2f67164
2 changed files with 5 additions and 0 deletions

View file

@ -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

1
gc.c
View file

@ -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: