summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpixel <pixel>2008-05-18 06:02:55 +0000
committerpixel <pixel>2008-05-18 06:02:55 +0000
commitb4e756462cc011874edb13e1fe2991cac6d39f1f (patch)
tree949f0f3d48632531369b11a391173c04fd4296f6
parent1947b4aedbae747533a03c11cf6f426bcbb42280 (diff)
Whoops, forgot to free the stuff as well.
-rw-r--r--mpq-fs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mpq-fs.c b/mpq-fs.c
index 811de8d..333e02b 100644
--- a/mpq-fs.c
+++ b/mpq-fs.c
@@ -135,6 +135,7 @@ void mpqlib_shutdown() {
if (!hash_table)
return;
if (hfirst(hash_table)) do {
+ free(hstuff(hash_table));
free(hkey(hash_table));
} while (hnext(hash_table));