From: Mark Michelson Date: Thu, 24 Sep 2015 19:49:46 +0000 (-0500) Subject: Do not swallow frames on channels leaving bridges. X-Git-Tag: 13.6.0-rc1~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=629458d34930e5aca56f749bc05562baf95d13f7;p=thirdparty%2Fasterisk.git Do not swallow frames on channels leaving bridges. When leaving a bridge, indications on a channel could be swallowed by the internal indication logic because it appears that the channel is on its way to be hung up anyway. One such situation where this is detrimental is when channels on hold are redirected out of a bridge. The AST_CONTROL_UNHOLD indication from the bridging code is swallowed, leaving the channel in question to still appear to be on hold. The fix here is to modify the logic inside ast_indicate_data() to not drop the indication if the channel is simply leaving a bridge. This way, channels on hold redirected out of a bridge revert to their expected "in use" state after the redirection. ASTERISK-25418 #close Reported by Mark Michelson Change-Id: If6115204dfa0551c050974ee138fabd15f978949 --- diff --git a/main/channel.c b/main/channel.c index 8c1a26eb7a..9aeae5f741 100644 --- a/main/channel.c +++ b/main/channel.c @@ -4487,7 +4487,7 @@ int ast_indicate_data(struct ast_channel *chan, int _condition, /* Don't bother if the channel is about to go away, anyway. */ if ((ast_test_flag(ast_channel_flags(chan), AST_FLAG_ZOMBIE) - || ast_check_hangup(chan)) + || (ast_check_hangup(chan) && !ast_channel_is_leaving_bridge(chan))) && condition != AST_CONTROL_MASQUERADE_NOTIFY) { res = -1; goto indicate_cleanup;