From: Joshua Colp Date: Thu, 26 Feb 2009 15:40:10 +0000 (+0000) Subject: Ensure there is a valid tone part before trying to play tones. X-Git-Tag: 1.6.2.0-beta1~127 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c342501e3faafac7f1ef0283516e432e7a8fa0a;p=thirdparty%2Fasterisk.git Ensure there is a valid tone part before trying to play tones. (closes issue #14558) Reported by: alecdavis git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@178764 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/indications.c b/main/indications.c index 1fe01f148f..5b26ff239b 100644 --- a/main/indications.c +++ b/main/indications.c @@ -374,6 +374,11 @@ int ast_playtones_start(struct ast_channel *chan, int vol, const char *playlst, d.nitems++; } + if (!d.nitems) { + ast_log(LOG_ERROR, "No valid tone parts\n"); + return -1; + } + if (ast_activate_generator(chan, &playtones, &d)) { ast_free(d.items); return -1;