Commit 754ebe34 authored by Fabrice Bellard's avatar Fabrice Bellard

fixed memory free

Originally committed as revision 552 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 57060b1e
......@@ -294,7 +294,7 @@ static int mpegts_read_close(AVFormatContext *s)
MpegTSContext *ts = s->priv_data;
int i;
for(i=0;i<NB_PID_MAX;i++)
av_freep(ts->pids[i]);
av_free(ts->pids[i]);
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