1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-26 19:01:44 +02:00

fix mem leak

patch by Oliver Pfister: [oliver pfister gmx ch]

Originally committed as revision 9491 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Oliver Pfister 2007-07-05 20:47:58 +00:00 committed by Benoit Fouet
parent 7b62bb2b8d
commit 3caffb7d80

View File

@ -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;