]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Unused return value
authorWilliam King <william.king@quentustech.com>
Sat, 5 Apr 2014 19:01:21 +0000 (12:01 -0700)
committerWilliam King <william.king@quentustech.com>
Mon, 7 Apr 2014 06:49:05 +0000 (23:49 -0700)
src/mod/languages/mod_basic/my_basic.c

index 49aaaeac27b9b6b1092057ba53b298120515b433..a506bea29c7654bf0395327f80347e55d6295da6 100644 (file)
@@ -1384,7 +1384,6 @@ unsigned int _ht_remove(_ht_node_t* ht, void* key) {
 
        mb_assert(ht && key);
 
-       bucket = _ht_find(ht, key);
        hash_code = ht->hash(ht, key);
        bucket = ht->array[hash_code];
        result = _ls_try_remove(bucket, key, _ls_cmp_extra);