From 8f97a2c53745f97055c38f41dd1e3dd96e64b300 Mon Sep 17 00:00:00 2001 From: nahi Date: Thu, 11 Aug 2011 06:51:42 +0000 Subject: * variable.c (autoload_delete): An autoload entry is still in a RCLASS_IV_TBL, not in a RCLASS_CONST_TBL, so take back the table changed in r29600. And an autoload entry keeps not a rb_const_entry_t but a NODE so remove rb_const_entry_t thing added in r29602. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'variable.c') diff --git a/variable.c b/variable.c index ef1c914df3..6ddbd71390 100644 --- a/variable.c +++ b/variable.c @@ -1495,9 +1495,7 @@ autoload_delete(VALUE mod, ID id) if (tbl->num_entries == 0) { n = autoload; - st_delete(RCLASS_CONST_TBL(mod), &n, &val); - ce = (rb_const_entry_t*)val; - if (ce) xfree(ce); + st_delete(RCLASS_IV_TBL(mod), &n, &val); } } -- cgit v1.2.3