From: Russell Bryant Date: Mon, 9 Jul 2007 21:00:17 +0000 (+0000) Subject: When the specified class isn't found, properly fall back to the channel's music X-Git-Tag: 1.2.21~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=319b105e17fd1fc93f174b3620cabf1618232809;p=thirdparty%2Fasterisk.git When the specified class isn't found, properly fall back to the channel's music class or the default. (issue #10123, reported by blitzrage, patches from juggie, qwell, and me) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@74165 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c index 7649d6f5b5..f091793c13 100644 --- a/res/res_musiconhold.c +++ b/res/res_musiconhold.c @@ -636,6 +636,7 @@ static struct mohclass *get_mohbyname(char *name) return moh; moh = moh->next; } + ast_log(LOG_WARNING, "Music on Hold class '%s' not found\n", name); return NULL; } @@ -908,20 +909,19 @@ static void local_ast_moh_cleanup(struct ast_channel *chan) static int local_ast_moh_start(struct ast_channel *chan, char *class) { - struct mohclass *mohclass; + struct mohclass *mohclass = NULL; - if (ast_strlen_zero(class)) - class = chan->musicclass; - if (ast_strlen_zero(class)) - class = "default"; ast_mutex_lock(&moh_lock); - mohclass = get_mohbyname(class); + if (!ast_strlen_zero(class)) + mohclass = get_mohbyname(class); + if (!mohclass && !ast_strlen_zero(chan->musicclass)) + mohclass = get_mohbyname(chan->musicclass); + if (!mohclass) + mohclass = get_mohbyname("default"); ast_mutex_unlock(&moh_lock); - if (!mohclass) { - ast_log(LOG_WARNING, "No class: %s\n", (char *)class); + if (!mohclass) return -1; - } ast_set_flag(chan, AST_FLAG_MOH); if (mohclass->total_files) {