From e21d079484975b47f5e5266436972fada48de109 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Tue, 19 Jun 2007 13:54:03 +0000 Subject: [PATCH] Perform an extra hangup check just in case. (issue #9589 reported by bcnit) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@69894 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_meetme.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 8e7f2d8f0a..405dff9aaa 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -1296,6 +1296,10 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c } } + /* If the channel wants to be hung up, hang it up */ + if (ast_check_hangup(chan)) + break; + if (c) { if (c->fds[0] != origfd) { if (using_pseudo) {