Browse Source

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

Originally committed as revision 2242 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
9d90c37f39
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavformat/mpeg.c

+ 4
- 0
libavformat/mpeg.c 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;
}



Loading…
Cancel
Save