From 925924386aa6ea6fc36bab150f9c1152d3435307 Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Wed, 9 Apr 2008 14:41:58 +0000 Subject: [PATCH] Merged revisions 113681 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r113681 | mmichelson | 2008-04-09 09:40:05 -0500 (Wed, 09 Apr 2008) | 9 lines If Asterisk receives a 488 on an INVITE (not a reinvite), then we should not send a BYE. (closes issue #12392) Reported by: fnordian Patches: chan_sip.patch uploaded by fnordian (license 110) with small modification from me ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@113682 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 6e60c4308d..501a50c41a 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -14876,6 +14876,9 @@ static void handle_response_invite(struct sip_pvt *p, int resp, char *rest, stru if (p->owner && !req->ignore) ast_queue_control(p->owner, AST_CONTROL_CONGESTION); p->needdestroy = 1; + /* If there's no dialog to end, then mark p as already gone */ + if (!reinvite) + sip_alreadygone(p); } break; case 491: /* Pending */