From 10c4a5fef7bc39e8e77e30d3e10c2640dff616de Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Mon, 12 Feb 2007 15:40:23 +0000 Subject: [PATCH] Simplify a small bit of logic. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@54003 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/channel.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/main/channel.c b/main/channel.c index 1a8cfabd56..b02178d392 100644 --- a/main/channel.c +++ b/main/channel.c @@ -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: