From f28c4584cc21af5f39e72de47f89da6aed0012b6 Mon Sep 17 00:00:00 2001 From: file Date: Tue, 19 May 2009 14:41:45 +0000 Subject: Fix a bug where direct RTP setup would partially occur even when disabled if the calling channel was answered. (issue #13545) Reported by: davidw (issue #14244) Reported by: mbnwa git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@195448 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 3bc29bb75..82233b929 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -18528,7 +18528,7 @@ static int sip_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp, struc return -1; /* Disable early RTP bridge */ - if (chan->_state != AST_STATE_UP && !global_directrtpsetup) /* We are in early state */ + if (!ast_bridged_channel(chan) && !global_directrtpsetup) /* We are in early state */ return 0; ast_mutex_lock(&p->lock); -- cgit v1.2.1