]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Really ignore NULL frames and check whether the channel hungup or not. (issue #9912...
authorJoshua Colp <jcolp@digium.com>
Wed, 13 Jun 2007 19:08:24 +0000 (19:08 +0000)
committerJoshua Colp <jcolp@digium.com>
Wed, 13 Jun 2007 19:08:24 +0000 (19:08 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@69144 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_meetme.c

index 5cf3f404743267d8f4da7315725c85df06084f5a..555f6d2179f70a042d41fbc50f8454a35670ac38 100644 (file)
@@ -2121,12 +2121,16 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, int c
                                        default:
                                                break;
                                        }
+                               } else if (f->frametype == AST_FRAME_NULL) {
+                                       /* Ignore NULL frames. It is perfectly normal to get these if the person is muted. */
                                } else if (option_debug) {
                                        ast_log(LOG_DEBUG,
                                                "Got unrecognized frame on channel %s, f->frametype=%d,f->subclass=%d\n",
                                                chan->name, f->frametype, f->subclass);
                                }
                                ast_frfree(f);
+                               if (ast_check_hangup(chan))
+                                       break;
                        } else if (outfd > -1) {
                                res = read(outfd, buf, CONF_SIZE);
                                if (res > 0) {