dect
/
asterisk
Archived
13
0
Fork 0

Don't die when a file is missing (bug #3212)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@4623 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2004-12-31 21:52:56 +00:00
parent 2db4e9334c
commit d2cad8a85e
1 changed files with 1 additions and 2 deletions

View File

@ -433,8 +433,7 @@ static int handle_streamfile(struct ast_channel *chan, AGI *agi, int argc, char
fs = ast_openstream(chan, argv[2], chan->language);
if(!fs){
fdprintf(agi->fd, "200 result=%d endpos=%ld\n", 0, sample_offset);
ast_log(LOG_WARNING, "Unable to open %s\n", argv[2]);
return RESULT_FAILURE;
return RESULT_SUCCESS;
}
ast_seekstream(fs, 0, SEEK_END);
max_length = ast_tellstream(fs);