mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
memleak
Originally committed as revision 14003 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
435a6082f9
commit
66602c67be
@ -242,6 +242,11 @@ static int str_read_packet(AVFormatContext *s,
|
|||||||
static int str_read_close(AVFormatContext *s)
|
static int str_read_close(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
StrDemuxContext *str = s->priv_data;
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user