Commit 66602c67 authored by Michael Niedermayer's avatar Michael Niedermayer

memleak

Originally committed as revision 14003 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 435a6082
......@@ -242,6 +242,11 @@ static int str_read_packet(AVFormatContext *s,
static int str_read_close(AVFormatContext *s)
{
StrDemuxContext *str = s->priv_data;
int i;
for(i=0; i<32; i++){
if(str->channels[i].tmp_pkt.data)
av_free_packet(&str->channels[i].tmp_pkt);
}
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