forked from Telodendria/Telodendria
[FIX] Pre-emptively free out the key
I fail to see a reason why this shouldn't be done, to be fair, and it fixes a memory leakage with a Cytoplasm-based project I'm making.
This commit is contained in:
parent
c3646294f5
commit
da857a3d53
1 changed files with 2 additions and 0 deletions
|
@ -184,6 +184,8 @@ HashMapDelete(HashMap * map, const char *key)
|
||||||
if (bucket->hash == hash)
|
if (bucket->hash == hash)
|
||||||
{
|
{
|
||||||
bucket->hash = 0;
|
bucket->hash = 0;
|
||||||
|
Free(bucket->key);
|
||||||
|
bucket->key = NULL;
|
||||||
return bucket->value;
|
return bucket->value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue