diff options
author | Oliver Pfister <oliver.pfister@gmx.ch> | 2007-07-05 20:47:58 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-07-05 20:47:58 +0000 |
commit | 3caffb7d80f20c66d7d582ca3d23f80ad373ba0a (patch) | |
tree | 7a59cf43faef6f6c6e191f82e043e5e1abf2c4ed /libavcodec | |
parent | 7b62bb2b8d3a823f0328b69ca292d0eddbf8713d (diff) | |
download | ffmpeg-3caffb7d80f20c66d7d582ca3d23f80ad373ba0a.tar.gz |
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')
-rw-r--r-- | libavcodec/ffv1.c | 1 |
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; |