From 0c4fe2b522b3c51f4c815d37e3d953d59a32f29e Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 25 Jun 2003 05:28:24 +0000 Subject: * variable.c (autoload_delete): should delete Qundef from iv_tbl. (ruby-bugs-ja PR#504) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3999 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'variable.c') diff --git a/variable.c b/variable.c index 5c65c0425b..eb1f3e32bc 100644 --- a/variable.c +++ b/variable.c @@ -1170,12 +1170,13 @@ autoload_delete(mod, id) { VALUE val, file = Qnil; + st_delete(RCLASS(mod)->iv_tbl, &id, 0); if (st_lookup(RCLASS(mod)->iv_tbl, autoload, &val)) { struct st_table *tbl = check_autoload_table(val); if (!st_delete(tbl, &id, &file)) file = Qnil; - if (!tbl->num_entries) { + if (tbl->num_entries == 0) { DATA_PTR(val) = 0; st_free_table(tbl); id = autoload; -- cgit v1.2.3