mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 20:04:50 +00:00
use ast_strlen_zero
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@80896 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1939,7 +1939,7 @@ static int say_periodic_announcement(struct queue_ent *qe, int ringing)
|
||||
ast_verb(3, "Playing periodic announcement\n");
|
||||
|
||||
/* Check to make sure we have a sound file. If not, reset to the first sound file */
|
||||
if (qe->last_periodic_announce_sound >= MAX_PERIODIC_ANNOUNCEMENTS || !strlen(qe->parent->sound_periodicannounce[qe->last_periodic_announce_sound])) {
|
||||
if (qe->last_periodic_announce_sound >= MAX_PERIODIC_ANNOUNCEMENTS || ast_strlen_zero(qe->parent->sound_periodicannounce[qe->last_periodic_announce_sound])) {
|
||||
qe->last_periodic_announce_sound = 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user