mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-12 18:31:37 +00:00
fixed memory free
Originally committed as revision 552 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
57060b1ec7
commit
754ebe3465
@ -294,7 +294,7 @@ static int mpegts_read_close(AVFormatContext *s)
|
|||||||
MpegTSContext *ts = s->priv_data;
|
MpegTSContext *ts = s->priv_data;
|
||||||
int i;
|
int i;
|
||||||
for(i=0;i<NB_PID_MAX;i++)
|
for(i=0;i<NB_PID_MAX;i++)
|
||||||
av_freep(ts->pids[i]);
|
av_free(ts->pids[i]);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user