mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
Merged revisions 330204 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r330204 | seanbright | 2011-07-29 12:58:40 -0400 (Fri, 29 Jul 2011) | 9 lines Merged revisions 330203 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r330203 | seanbright | 2011-07-29 12:58:08 -0400 (Fri, 29 Jul 2011) | 2 lines Only write to wav files that were opened to be written to. ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@330205 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -340,6 +340,10 @@ static void wav_close(struct ast_filestream *s)
|
||||
char zero = 0;
|
||||
struct wav_desc *fs = (struct wav_desc *)s->_private;
|
||||
|
||||
if ((s->mode & O_RDONLY) == O_RDONLY) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (s->filename) {
|
||||
update_header(s->f);
|
||||
}
|
||||
|
Reference in New Issue
Block a user