diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-05-20 19:43:20 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-05-20 19:43:20 +0000 |
commit | 754ebe3465e72894a5fef7407d6e1468fd40054e (patch) | |
tree | ad44e709b490a99de256962cfa1b788f18d2eec1 | |
parent | 57060b1ec737c7a4e9d432947c5c255821d6f471 (diff) | |
download | ffmpeg-754ebe3465e72894a5fef7407d6e1468fd40054e.tar.gz |
fixed memory free
Originally committed as revision 552 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libav/mpegts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/mpegts.c b/libav/mpegts.c index 0c51ae1cad..54426d721a 100644 --- a/libav/mpegts.c +++ b/libav/mpegts.c @@ -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; } |