From: Joshua Colp Date: Fri, 16 May 2008 21:34:45 +0000 (+0000) Subject: Try to fix attended transfers. X-Git-Tag: 1.6.2.0-beta1~2223 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=30aedbade74e5387bd5656fd65014d6768a62847;p=thirdparty%2Fasterisk.git Try to fix attended transfers. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@116848 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 6610563ddc..bad96503eb 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -11161,12 +11161,18 @@ static struct sip_pvt *get_sip_pvt_byid_locked(const char *callid, const char *t sip_pvt_ptr->theirtag, sip_pvt_ptr->tag); return 0; } - sip_pvt_unlock(sip_pvt_ptr); if (totag) ast_debug(4, "Matched %s call - their tag is %s Our tag is %s\n", ast_test_flag(&sip_pvt_ptr->flags[0], SIP_OUTGOING) ? "OUTGOING": "INCOMING", sip_pvt_ptr->theirtag, sip_pvt_ptr->tag); + + /* deadlock avoidance... */ + while (sip_pvt_ptr->owner && ast_channel_trylock(sip_pvt_ptr->owner)) { + sip_pvt_unlock(sip_pvt_ptr); + usleep(1); + sip_pvt_lock(sip_pvt_ptr); + } } return sip_pvt_ptr;