mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-20 00:30:20 +00:00
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
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user