mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-04-05 01:11:00 +00:00
fixing a leak in the hashtables, htdel didn't delete the hash_node_t entries
This commit is contained in:
parent
23d16b303d
commit
a1b50603e5
1 changed files with 3 additions and 0 deletions
3
util.c
3
util.c
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue