From: Joshua Colp Date: Thu, 31 Aug 2006 18:47:51 +0000 (+0000) Subject: Don't fail the write if they try to write a NULL or IAX frame as we just ignore these. X-Git-Tag: 1.4.0-beta1~228 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d6096858d0dee25ed343021bc499fb2913fc3308;p=thirdparty%2Fasterisk.git Don't fail the write if they try to write a NULL or IAX frame as we just ignore these. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@41596 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/channel.c b/main/channel.c index 6ba79eea6e..16d89d6611 100644 --- a/main/channel.c +++ b/main/channel.c @@ -2532,6 +2532,7 @@ int ast_write(struct ast_channel *chan, struct ast_frame *fr) case AST_FRAME_NULL: case AST_FRAME_IAX: /* Ignore these */ + res = 0; break; default: res = chan->tech->write(chan, f);