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:
parent
5e9cfca2d4
commit
73a2f67164
2 changed files with 5 additions and 0 deletions
|
@ -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
1
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:
|
||||
|
|
Loading…
Reference in a new issue