Commit 3c132023 authored by Baptiste Coudurier's avatar Baptiste Coudurier

fix memleak, free stream codec allocated by av_new_stream

Originally committed as revision 7225 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2421a01b
......@@ -3942,8 +3942,10 @@ int main(int argc, char **argv)
int j;
if (!(s->oformat->flags & AVFMT_NOFILE))
url_fclose(&s->pb);
for(j=0;j<s->nb_streams;j++)
for(j=0;j<s->nb_streams;j++) {
av_free(s->streams[j]->codec);
av_free(s->streams[j]);
}
av_free(s);
}
for(i=0;i<nb_input_files;i++)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment