Commit 7e078453 authored by glantau's avatar glantau

fixed memory free


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@552 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8ee8dc3e
......@@ -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