Skip to content
Snippets Groups Projects
Commit a0e7079a authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

Fix 10l leak in ffv1.

Originally committed as revision 25595 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 73cbf868
No related branches found
No related tags found
No related merge requests found
...@@ -1295,6 +1295,10 @@ static av_cold int common_end(AVCodecContext *avctx){ ...@@ -1295,6 +1295,10 @@ static av_cold int common_end(AVCodecContext *avctx){
av_freep(&s->rc_stat2[j]); av_freep(&s->rc_stat2[j]);
} }
for(i=0; i<s->slice_count; i++){
av_freep(&s->slice_context[i]);
}
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment