summaryrefslogtreecommitdiff
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
commit7049aeb893d9bc9b7205e2f70581760cb54091ab (patch)
treecd11abe5bd68146ddbf7ad300bde58907d261fab /st.c
parent2e3d3bb91681a9f916f862a05ebc9736a15e3dda (diff)
* oniggnu.h, oniguruma.h, regcomp.c, st.c: imported Oni Guruma 3.6.0.
git-svn-id: svn+ssh://ci.ruby-lang.org/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 cad73288f6..5bce4ff836 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;
}