Commit b97a6150 authored by benoit's avatar benoit

fix mem leak

patch by Oliver Pfister: [oliver pfister gmx ch]


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9491 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f43e999e
...@@ -702,6 +702,7 @@ static int common_end(AVCodecContext *avctx){ ...@@ -702,6 +702,7 @@ static int common_end(AVCodecContext *avctx){
PlaneContext *p= &s->plane[i]; PlaneContext *p= &s->plane[i];
av_freep(&p->state); av_freep(&p->state);
av_freep(&p->vlc_state);
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment