summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
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;
}