fixing a leak in the hashtables, htdel didn't delete the hash_node_t entries

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-11-25 15:12:16 +01:00
parent 23d16b303d
commit a1b50603e5

3
util.c
View file

@ -640,12 +640,15 @@ void util_htdel(hash_table_t *ht) {
size_t i = 0;
for (; i < ht->size; i++) {
hash_node_t *n = ht->table[i];
hash_node_t *p;
/* free in list */
while (n) {
if (n->key)
mem_d(n->key);
p = n;
n = n->next;
mem_d(p);
}
}