No need to call free_value, since we set value to NULL

SVN revision: 17085
This commit is contained in:
sebastid 2005-09-30 06:09:36 +00:00 committed by sebastid
parent 0c9911f9f4
commit 0895d05ac4
1 changed files with 1 additions and 1 deletions

View File

@ -423,7 +423,7 @@ void *ecore_hash_remove(Ecore_Hash *hash, void *key)
ret = node->value; ret = node->value;
node->value = NULL; node->value = NULL;
_ecore_hash_node_destroy(node, hash->free_key, _ecore_hash_node_destroy(node, hash->free_key,
hash->free_value); NULL);
} }
} }