diff options
author | ksaito <ksaito@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-13 01:54:52 +0000 |
---|---|---|
committer | ksaito <ksaito@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-13 01:54:52 +0000 |
commit | 7049aeb893d9bc9b7205e2f70581760cb54091ab (patch) | |
tree | cd11abe5bd68146ddbf7ad300bde58907d261fab /st.c | |
parent | 2e3d3bb91681a9f916f862a05ebc9736a15e3dda (diff) | |
download | ruby-7049aeb893d9bc9b7205e2f70581760cb54091ab.tar.gz |
* 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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; } |