From: Seven Du Date: Sat, 17 Aug 2019 02:50:03 +0000 (+0800) Subject: FS-12007 fix leak X-Git-Tag: v1.10.1^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6b3d78567553daa9998f759ff9c89d632a11626;p=thirdparty%2Ffreeswitch.git FS-12007 fix leak --- 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); }