[SCM] libav/experimental: fixed memory free

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:31:57 UTC 2013


The following commit has been merged in the experimental branch:
commit 754ebe3465e72894a5fef7407d6e1468fd40054e
Author: Fabrice Bellard <fabrice at bellard.org>
Date:   Mon May 20 19:43:20 2002 +0000

    fixed memory free
    
    Originally committed as revision 552 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libav/mpegts.c b/libav/mpegts.c
index 0c51ae1..54426d7 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;
 }
 

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list