From 350f34352d7680227c332c4b1e2eda7ce6cd8322 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: http://svn.ruby-lang.org/repos/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 86a26103a..e8b860557 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