[svn-commits] tilghman: branch 1.4 r124315 - /branches/1.4/channels/chan_local.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Fri Jun 20 15:16:02 CDT 2008


Author: tilghman
Date: Fri Jun 20 15:16:02 2008
New Revision: 124315

URL: http://svn.digium.com/view/asterisk?view=rev&rev=124315
Log:
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)

Modified:
    branches/1.4/channels/chan_local.c

Modified: branches/1.4/channels/chan_local.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/channels/chan_local.c?view=diff&rev=124315&r1=124314&r2=124315
==============================================================================
--- branches/1.4/channels/chan_local.c (original)
+++ branches/1.4/channels/chan_local.c Fri Jun 20 15:16:02 2008
@@ -538,6 +538,9 @@
 	} else {
 		p->owner = NULL;
 		ast_module_user_remove(p->u_owner);
+		if (p->chan) {
+			ast_queue_hangup(p->chan);
+		}
 	}
 	
 	ast->tech_pvt = NULL;




More information about the svn-commits mailing list