From 3caffb7d80f20c66d7d582ca3d23f80ad373ba0a Mon Sep 17 00:00:00 2001 From: Oliver Pfister Date: Thu, 5 Jul 2007 20:47:58 +0000 Subject: [PATCH] fix mem leak patch by Oliver Pfister: [oliver pfister gmx ch] Originally committed as revision 9491 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ffv1.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 4a8d80b672..0131b837cf 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -702,6 +702,7 @@ static int common_end(AVCodecContext *avctx){ PlaneContext *p= &s->plane[i]; av_freep(&p->state); + av_freep(&p->vlc_state); } return 0;