summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1.c
diff options
context:
space:
mode:
authorOliver Pfister <oliver.pfister@gmx.ch>2007-07-05 20:47:58 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2007-07-05 20:47:58 +0000
commit3caffb7d80f20c66d7d582ca3d23f80ad373ba0a (patch)
tree7a59cf43faef6f6c6e191f82e043e5e1abf2c4ed /libavcodec/ffv1.c
parent7b62bb2b8d3a823f0328b69ca292d0eddbf8713d (diff)
fix mem leak
patch by Oliver Pfister: [oliver pfister gmx ch] Originally committed as revision 9491 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r--libavcodec/ffv1.c1
1 files changed, 1 insertions, 0 deletions
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;