[asterisk-commits] coreyfarrell: trunk r427738 - in /trunk: ./ main/features.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Nov 12 14:41:05 CST 2014
Author: coreyfarrell
Date: Wed Nov 12 14:40:59 2014
New Revision: 427738
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=427738
Log:
Fix leak in AMI Action Bridge
Add missing reference cleanup for newly created bridge.
ASTERISK-24281
Reported by: Stefan Engström
Review: https://reviewboard.asterisk.org/r/4154/
........
Merged revisions 427736 from http://svn.asterisk.org/svn/asterisk/branches/12
........
Merged revisions 427737 from http://svn.asterisk.org/svn/asterisk/branches/13
Modified:
trunk/ (props changed)
trunk/main/features.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-13-merged' - no diff available.
Modified: trunk/main/features.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/features.c?view=diff&rev=427738&r1=427737&r2=427738
==============================================================================
--- trunk/main/features.c (original)
+++ trunk/main/features.c Wed Nov 12 14:40:59 2014
@@ -844,6 +844,7 @@
}
astman_send_ack(s, m, "Channels have been bridged");
+ ao2_cleanup(bridge);
return 0;
}
More information about the asterisk-commits
mailing list