From fca05ea8a047afbc6bddb319ab659a445670a451 Mon Sep 17 00:00:00 2001 From: Jason Garrett-Glaser Date: Mon, 26 Jul 2010 07:10:30 +0000 Subject: [PATCH] VP8: add missing free Fixes a tiny memory leak. Originally committed as revision 24504 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vp8.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 2d1b50273..1136f38a8 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -210,6 +210,7 @@ static void vp8_decode_flush(AVCodecContext *avctx) memset(s->framep, 0, sizeof(s->framep)); av_freep(&s->macroblocks_base); + av_freep(&s->filter_strength); av_freep(&s->intra4x4_pred_mode_base); av_freep(&s->top_nnz); av_freep(&s->edge_emu_buffer); -- 2.11.0