summaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorksaito <ksaito@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-13 01:54:52 +0000
committerksaito <ksaito@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-13 01:54:52 +0000
commitcd2e798fea26154bd2baacc475d28a812ac93331 (patch)
treecd11abe5bd68146ddbf7ad300bde58907d261fab /st.c
parent67ecfdd379d1830fea08703f266755c346d64b35 (diff)
downloadruby-cd2e798fea26154bd2baacc475d28a812ac93331.tar.gz
ruby-cd2e798fea26154bd2baacc475d28a812ac93331.tar.xz
ruby-cd2e798fea26154bd2baacc475d28a812ac93331.zip
* oniggnu.h, oniguruma.h, regcomp.c, st.c: imported Oni Guruma 3.6.0.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7959 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'st.c')
-rw-r--r--st.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/st.c b/st.c
index cad73288f..5bce4ff83 100644
--- a/st.c
+++ b/st.c
@@ -246,6 +246,7 @@ st_free_table(table)
ptr = table->bins[i];
while (ptr != 0) {
next = ptr->next;
+ table->type->key_free(ptr->key);
free(ptr);
ptr = next;
}