Skip to content
Snippets Groups Projects
Commit 4e1fe6cc authored by Sean Bright's avatar Sean Bright
Browse files

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
parent b6a9795b
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment