mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
* fix leak with output file closing
Originally committed as revision 1166 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5acdd6e6e2
commit
4fca59f2ab
10
ffmpeg.c
10
ffmpeg.c
@ -2567,8 +2567,14 @@ int main(int argc, char **argv)
|
||||
|
||||
/* close files */
|
||||
for(i=0;i<nb_output_files;i++) {
|
||||
if (!(output_files[i]->oformat->flags & AVFMT_NOFILE))
|
||||
url_fclose(&output_files[i]->pb);
|
||||
/* maybe av_close_output_file ??? */
|
||||
AVFormatContext *s = output_files[i];
|
||||
int j;
|
||||
if (!(s->oformat->flags & AVFMT_NOFILE))
|
||||
url_fclose(&s->pb);
|
||||
for(j=0;j<s->nb_streams;j++)
|
||||
av_free(s->streams[j]);
|
||||
av_free(s);
|
||||
}
|
||||
for(i=0;i<nb_input_files;i++)
|
||||
av_close_input_file(input_files[i]);
|
||||
|
Loading…
Reference in New Issue
Block a user