dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 195448 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r195448 | file | 2009-05-19 11:41:45 -0300 (Tue, 19 May 2009) | 7 lines
  
  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/trunk@195449 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2009-05-19 14:43:54 +00:00
parent cd27c61b1f
commit 7946be333a
1 changed files with 1 additions and 1 deletions

View File

@ -24775,7 +24775,7 @@ static int sip_set_rtp_peer(struct ast_channel *chan, struct ast_rtp_instance *i
return -1;
/* Disable early RTP bridge */
if (chan->_state != AST_STATE_UP && !sip_cfg.directrtpsetup) /* We are in early state */
if (!ast_bridged_channel(chan) && !sip_cfg.directrtpsetup) /* We are in early state */
return 0;
sip_pvt_lock(p);