From d5bd3f47821067adc170c58e02fdf11253de2488 Mon Sep 17 00:00:00 2001 From: roux <roux@mycompany.com> Date: Tue, 30 Jun 2015 07:31:58 +0000 Subject: [PATCH] fix (old code, normally not used, but just in case...) git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7671 818b1a75-f10b-46b9-bf7c-635c3b92a50f --- openair-cn/UTILS/HASHTABLE/hashtable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openair-cn/UTILS/HASHTABLE/hashtable.c b/openair-cn/UTILS/HASHTABLE/hashtable.c index 23149c1389..48d806cd0f 100755 --- a/openair-cn/UTILS/HASHTABLE/hashtable.c +++ b/openair-cn/UTILS/HASHTABLE/hashtable.c @@ -233,7 +233,7 @@ hashtable_rc_t hashtable_remove(hash_table_t *hashtblP, const uint64_t keyP) node=hashtblP->nodes[hash]; while(node) { - if(node->key != keyP) { + if(node->key == keyP) { if(prevnode) prevnode->next=node->next; else hashtblP->nodes[hash]=node->next; -- 2.26.2