[asterisk-commits] dvossel: branch dvossel/fixtheworld_phase1_step3 r304423 - /team/dvossel/fixt...

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jan 27 09:59:18 CST 2011


Author: dvossel
Date: Thu Jan 27 09:59:13 2011
New Revision: 304423

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=304423
Log:
Free capabilities structure on unload of bridge module

Modified:
    team/dvossel/fixtheworld_phase1_step3/bridges/bridge_multiplexed.c

Modified: team/dvossel/fixtheworld_phase1_step3/bridges/bridge_multiplexed.c
URL: http://svnview.digium.com/svn/asterisk/team/dvossel/fixtheworld_phase1_step3/bridges/bridge_multiplexed.c?view=diff&rev=304423&r1=304422&r2=304423
==============================================================================
--- team/dvossel/fixtheworld_phase1_step3/bridges/bridge_multiplexed.c (original)
+++ team/dvossel/fixtheworld_phase1_step3/bridges/bridge_multiplexed.c Thu Jan 27 09:59:13 2011
@@ -389,6 +389,7 @@
 	int res = ast_bridge_technology_unregister(&multiplexed_bridge);
 
 	ao2_ref(multiplexed_threads, -1);
+	multiplexed_bridge.format_capabilities = ast_format_cap_destroy(multiplexed_bridge.format_capabilities);
 
 	return res;
 }




More information about the asterisk-commits mailing list