Commit 0044a8f8 authored by Måns Rullgård's avatar Måns Rullgård Committed by Michael Niedermayer

double free patch by (Måns Rullgård <mru inprovide com>)

"This free is handled in av_write_trailer() since Oct 1 2004, but apparently mpegts was missed at the time."

Originally committed as revision 4023 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d8a57c6d
......@@ -604,10 +604,6 @@ static int mpegts_write_end(AVFormatContext *s)
}
av_free(ts->services);
for(i = 0; i < s->nb_streams; i++) {
st = s->streams[i];
av_free(st->priv_data);
}
return 0;
}
......
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