benchmarks: Fix copy-paste error

Coverity reports this as a copy-paste error, and checking the code it
certainly looks that way, so lets call the proper hash function here

Fixes CID1401052

@fix
This commit is contained in:
Christopher Michael 2019-05-22 08:45:24 -04:00
parent 020a59b0f2
commit d15b37eea1
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ ecore_hash_hash_set(Ecore_Hash *hash, Ecore_Hash *set)
hash->free_key(node->key);
if (hash->free_value)
hash->free_key(node->value);
hash->free_value(node->value);
node->key = old->key;
node->value = old->value;