mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* gc.c (obj_free): free rb_classext_t of eigenclass. [Bug #1392]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26515 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
4916ce4641
commit
bcbfa7a97b
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Jan 31 13:31:43 2010 wanabe <s.wanabe@gmail.com>
|
||||
|
||||
* gc.c (obj_free): free rb_classext_t of eigenclass. [Bug #1392]
|
||||
|
||||
Sun Jan 31 13:00:14 2010 Yusuke Endoh <mame@tsg.ne.jp>
|
||||
|
||||
* lib/rexml/document.rb (REXML::Document#add): fix duplicate XMLDecls
|
||||
|
|
1
gc.c
1
gc.c
|
@ -2047,6 +2047,7 @@ obj_free(rb_objspace_t *objspace, VALUE obj)
|
|||
break;
|
||||
case T_ICLASS:
|
||||
/* iClass shares table with the module */
|
||||
xfree(RANY(obj)->as.klass.ptr);
|
||||
break;
|
||||
|
||||
case T_FLOAT:
|
||||
|
|
Loading…
Add table
Reference in a new issue