Compare commits

..

No commits in common. "c7204f316ca550b552e8aba0b0f0ccc8253efc87" and "e8543bdb2a1965298d3b5a6590c85b3b58f2c4f0" have entirely different histories.

View file

@ -184,8 +184,6 @@ 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;
} }