From fba1394ba09ba9f60a8ec123923b146ae6762568 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Fri, 20 Jun 2008 20:18:08 +0000 Subject: [PATCH] Merged revisions 124316 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r124316 | tilghman | 2008-06-20 15:17:04 -0500 (Fri, 20 Jun 2008) | 16 lines Merged revisions 124315 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r124315 | tilghman | 2008-06-20 15:16:02 -0500 (Fri, 20 Jun 2008) | 8 lines When using a Local channel, started by a call file, with a destination of an AGI script, the AGI script does not always get notified of a hangup if the underlying channel hangs up early. (closes issue #11833) Reported by: IgorG Patches: local_hangup-v1.diff uploaded by IgorG (license 20) ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@124317 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_local.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/channels/chan_local.c b/channels/chan_local.c index f23dc8f2d7..f574eab322 100644 --- a/channels/chan_local.c +++ b/channels/chan_local.c @@ -546,6 +546,9 @@ static int local_hangup(struct ast_channel *ast) } else { p->owner = NULL; ast_module_user_remove(p->u_owner); + if (p->chan) { + ast_queue_hangup(p->chan); + } } ast->tech_pvt = NULL;