提交 4fca59f2 编写于 作者: Z Zdenek Kabelac

* fix leak with output file closing

Originally committed as revision 1166 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 5acdd6e6
......@@ -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]);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册