summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Michael <cp.michael@samsung.com>2019-05-22 08:45:24 -0400
committerChristopher Michael <cp.michael@samsung.com>2019-05-22 08:48:11 -0400
commitd15b37eea14102308ff7b48d069444599a559a77 (patch)
tree260922d92a785b14873ad9a1d556a69a0ed601f3
parent020a59b0f231fc0e2e526a87385bcb5ba3990e69 (diff)
downloadefl-d15b37eea14102308ff7b48d069444599a559a77.tar.gz
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
-rw-r--r--src/benchmarks/eina/ecore_hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/benchmarks/eina/ecore_hash.c b/src/benchmarks/eina/ecore_hash.c
index 374a0e08da..76a5ad2e38 100644
--- a/src/benchmarks/eina/ecore_hash.c
+++ b/src/benchmarks/eina/ecore_hash.c
@@ -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;