From 3adfc84e73c492b7f19e65e5578b21e673273afe Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 20 Mar 2002 11:15:19 +0000 Subject: * variable.c (rb_const_list): a temporary table must be freed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2233 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- variable.c | 1 + 1 file changed, 1 insertion(+) (limited to 'variable.c') diff --git a/variable.c b/variable.c index 86a26103a5..e8b8605576 100644 --- a/variable.c +++ b/variable.c @@ -1259,6 +1259,7 @@ rb_const_list(data) if (!tbl) return rb_ary_new2(0); ary = rb_ary_new2(tbl->num_entries); st_foreach(tbl, list_i, ary); + st_free_table(tbl); return ary; } -- cgit v1.2.3