mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-08-13 17:38:59 +00:00
FS-6402 --resolve
This commit is contained in:
@@ -143,7 +143,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_hash_delete_multi(switch_hash_t *has
|
||||
When done, iterate through the list deleting hash entries
|
||||
*/
|
||||
|
||||
for (hi = switch_core_hash_first(hash); hi; hi = switch_core_hash_next(hi)) {
|
||||
for (hi = switch_core_hash_first(hash); hi; hi = switch_core_hash_next(&hi)) {
|
||||
const void *key;
|
||||
void *val;
|
||||
switch_core_hash_this(hi, &key, NULL, &val);
|
||||
@@ -210,7 +210,7 @@ SWITCH_DECLARE(switch_hash_index_t *) switch_core_hash_first(switch_hash_t *hash
|
||||
return switch_hashtable_first(hash);
|
||||
}
|
||||
|
||||
SWITCH_DECLARE(switch_hash_index_t *) switch_core_hash_next(switch_hash_index_t *hi)
|
||||
SWITCH_DECLARE(switch_hash_index_t *) switch_core_hash_next(switch_hash_index_t **hi)
|
||||
{
|
||||
return switch_hashtable_next(hi);
|
||||
}
|
||||
|
Reference in New Issue
Block a user