memleak fix by (Michel Bardiaux <mbardiaux at peaktime dot be>)

Originally committed as revision 2242 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2003-09-09 19:32:52 +00:00
parent 72a476c1e1
commit 9d90c37f39
1 changed files with 4 additions and 0 deletions

View File

@ -395,6 +395,10 @@ static int mpeg_mux_end(AVFormatContext *ctx)
/* write the end header */
//put_be32(&ctx->pb, ISO_11172_END_CODE);
//put_flush_packet(&ctx->pb);
for(i=0;i<ctx->nb_streams;i++)
av_freep(&ctx->streams[i]->priv_data);
return 0;
}