Compare commits

..

No commits in common. "4903c075e850d34bd704f188eb95b0f9e19e2579" and "c3646294f566e889af2eb1b4a8f1cf254eb02a73" 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;
} }