dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 38825 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r38825 | file | 2006-08-03 15:54:02 -0400 (Thu, 03 Aug 2006) | 2 lines

Treat the file as invalid if we have no valid formats for it (issue #7643 reported by KNK)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@38826 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2006-08-03 19:55:05 +00:00
parent ec4399116a
commit c330d95877
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ static int ast_moh_files_next(struct ast_channel *chan)
state->pos %= state->class->total_files;
/* 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) > 0)
break;
}