From d15b37eea14102308ff7b48d069444599a559a77 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 22 May 2019 08:45:24 -0400 Subject: [PATCH] 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 --- src/benchmarks/eina/ecore_hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;