diff --git a/channel.c b/channel.c index ce524ecdd8..4f593d8444 100755 --- a/channel.c +++ b/channel.c @@ -37,6 +37,7 @@ #include #include #include +#include #ifdef ZAPTEL_OPTIMIZATIONS #include #include @@ -1128,7 +1129,7 @@ struct ast_frame *ast_read(struct ast_channel *chan) return NULL; } - if (!chan->deferdtmf && strlen(chan->dtmfq)) { + if (!chan->deferdtmf && !ast_strlen_zero(chan->dtmfq)) { /* We have DTMF that has been deferred. Return it now */ chan->dtmff.frametype = AST_FRAME_DTMF; chan->dtmff.subclass = chan->dtmfq[0]; @@ -1653,7 +1654,7 @@ struct ast_channel *__ast_request_and_dial(char *type, int format, void *data, i if (oh->account && *oh->account) ast_cdr_setaccount(chan, oh->account); } - if (callerid && strlen(callerid)) + if (callerid && !ast_strlen_zero(callerid)) ast_set_callerid(chan, callerid, 1); if (!ast_call(chan, data, 0)) {