diff --git a/apps/app_queue.c b/apps/app_queue.c index 53f3c31a00..36ba8e2131 100644 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -3718,7 +3718,7 @@ static int queue_exec(struct ast_channel *chan, void *data) qe.start = time(NULL); /* set the expire time based on the supplied timeout; */ - if (args.queuetimeoutstr) + if (!ast_strlen_zero(args.queuetimeoutstr)) qe.expire = qe.start + atoi(args.queuetimeoutstr); else qe.expire = 0;