From b6b3d78567553daa9998f759ff9c89d632a11626 Mon Sep 17 00:00:00 2001 From: Seven Du Date: Sat, 17 Aug 2019 10:50:03 +0800 Subject: [PATCH] FS-12007 fix leak --- src/switch_loadable_module.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/switch_loadable_module.c b/src/switch_loadable_module.c index fcacf28dc9..2f6c1dca69 100644 --- a/src/switch_loadable_module.c +++ b/src/switch_loadable_module.c @@ -2515,6 +2515,7 @@ SWITCH_DECLARE(void) switch_loadable_module_shutdown(void) switch_core_hash_destroy(&loadable_modules.limit_hash); switch_core_hash_destroy(&loadable_modules.database_hash); switch_core_hash_destroy(&loadable_modules.dialplan_hash); + switch_core_hash_destroy(&loadable_modules.secondary_recover_hash); switch_core_destroy_memory_pool(&loadable_modules.pool); }