1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-11 11:26:52 +02:00

fix memleak, free stream codec allocated by av_new_stream

Originally committed as revision 7225 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2006-12-05 14:01:44 +00:00
parent 2421a01b25
commit 3c13202396

View File

@ -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++)