Simplify a small bit of logic.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@54003 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Russell Bryant 19 years ago
parent 63cc6e10b4
commit 10c4a5fef7

@ -2673,10 +2673,7 @@ int ast_write(struct ast_channel *chan, struct ast_frame *fr)
/* and now put it through the regular translator */
f = (chan->writetrans) ? ast_translate(chan->writetrans, f, 0) : f;
}
if (f)
res = chan->tech->write(chan, f);
else
res = 0;
res = f ? chan->tech->write(chan, f) : 0;
break;
case AST_FRAME_NULL:
case AST_FRAME_IAX:

Loading…
Cancel
Save