[svn-commits] file: branch 1.2 r69894 - /branches/1.2/apps/app_meetme.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue Jun 19 08:54:03 CDT 2007
Author: file
Date: Tue Jun 19 08:54:03 2007
New Revision: 69894
URL: http://svn.digium.com/view/asterisk?view=rev&rev=69894
Log:
Perform an extra hangup check just in case. (issue #9589 reported by bcnit)
Modified:
branches/1.2/apps/app_meetme.c
Modified: branches/1.2/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.2/apps/app_meetme.c?view=diff&rev=69894&r1=69893&r2=69894
==============================================================================
--- branches/1.2/apps/app_meetme.c (original)
+++ branches/1.2/apps/app_meetme.c Tue Jun 19 08:54:03 2007
@@ -1295,6 +1295,10 @@
break;
}
}
+
+ /* If the channel wants to be hung up, hang it up */
+ if (ast_check_hangup(chan))
+ break;
if (c) {
if (c->fds[0] != origfd) {
More information about the svn-commits
mailing list