Index: apps/app_meetme.c =================================================================== --- apps/app_meetme.c (revision 68191) +++ apps/app_meetme.c (working copy) @@ -2121,12 +2121,16 @@ default: break; } + } else if (f->frametype == AST_FRAME_NULL) { + /* Ignore. */ } 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) {