mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 03:50:31 +00:00
when using moh files mode, don't look for a file past the number of files
that have been loaded, or worse, past the size of the files array git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@31775 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -212,6 +212,8 @@ static int ast_moh_files_next(struct ast_channel *chan)
|
|||||||
if (ast_test_flag(state->class, MOH_RANDOMIZE))
|
if (ast_test_flag(state->class, MOH_RANDOMIZE))
|
||||||
state->pos = rand();
|
state->pos = rand();
|
||||||
|
|
||||||
|
state->pos %= state->class->total_files;
|
||||||
|
|
||||||
/* check to see if this file's format can be opened */
|
/* check to see if this file's format can be opened */
|
||||||
if (ast_fileexists(state->class->filearray[state->pos], NULL, NULL) != -1)
|
if (ast_fileexists(state->class->filearray[state->pos], NULL, NULL) != -1)
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user