From 9ce99124f8976944584538489698bef32991d413 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 8 Oct 2008 02:18:15 +0000 Subject: * variable.c (autoload_delete, autoload_file): should not delete autoload table, since it may be shared with duplicated modules. [ruby-core:19181] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19710 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) (limited to 'variable.c') diff --git a/variable.c b/variable.c index a5fbf28f5..62377d0c7 100644 --- a/variable.c +++ b/variable.c @@ -1374,12 +1374,8 @@ autoload_delete(VALUE mod, ID id) st_delete(tbl, (st_data_t*)&id, &load); if (tbl->num_entries == 0) { - DATA_PTR(val) = 0; - st_free_table(tbl); id = autoload; - if (st_delete(RCLASS_IV_TBL(mod), (st_data_t*)&id, &val)) { - rb_gc_force_recycle(val); - } + st_delete(RCLASS_IV_TBL(mod), (st_data_t*)&id, &val); } } @@ -1421,12 +1417,8 @@ autoload_file(VALUE mod, ID id) /* already loaded but not defined */ st_delete(tbl, (st_data_t*)&id, 0); if (!tbl->num_entries) { - DATA_PTR(val) = 0; - st_free_table(tbl); id = autoload; - if (st_delete(RCLASS_IV_TBL(mod), (st_data_t*)&id, &val)) { - rb_gc_force_recycle(val); - } + st_delete(RCLASS_IV_TBL(mod), (st_data_t*)&id, &val); } return Qnil; } -- cgit