Skip to content

Commit

Permalink
* gc.c (gc_mark_children): ignores T_ZOMBIE.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nobu committed Oct 6, 2008
1 parent 5e9cfca commit 73a2f67
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions gc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 73a2f67

Please sign in to comment.