[svn-commits] rmudgett: branch 11 r381067 - /branches/11/apps/app_confbridge.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Feb 8 11:29:44 CST 2013


Author: rmudgett
Date: Fri Feb  8 11:29:40 2013
New Revision: 381067

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=381067
Log:
app_confbridge: Fix crash from receiving an AMI action after ConfBridge unloaded.

Unloading ConfBridge caused the next AMI action received to crash
Asterisk.

* Add the missing unregister of AMI action ConfbridgeSetSingleVideoSrc
when ConfBridge is unloaded.

(closes issue ASTERISK-20994)
Reported by: Jeremy Kister
Patches:
      jira_asterisk_20994_v11.patch (license #5621) patch uploaded by rmudgett
Tested by: Rusty Newton, Jeremy Kister

Modified:
    branches/11/apps/app_confbridge.c

Modified: branches/11/apps/app_confbridge.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/apps/app_confbridge.c?view=diff&rev=381067&r1=381066&r2=381067
==============================================================================
--- branches/11/apps/app_confbridge.c (original)
+++ branches/11/apps/app_confbridge.c Fri Feb  8 11:29:40 2013
@@ -2986,6 +2986,7 @@
 	res |= ast_manager_unregister("ConfbridgeLock");
 	res |= ast_manager_unregister("ConfbridgeStartRecord");
 	res |= ast_manager_unregister("ConfbridgeStopRecord");
+	res |= ast_manager_unregister("ConfbridgeSetSingleVideoSrc");
 
 	return res;
 }




More information about the svn-commits mailing list