From 6190f873eb6d1f2000d64f04e685575e687b61f1 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 10 Dec 2018 23:52:16 +0000 Subject: [PATCH] lavc/tiff: Fix leak of yuv_line in TiffContext. Signed-off-by: Carl Hetherington --- libavcodec/tiff.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 751f23ef33..f71885d156 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -1550,6 +1550,8 @@ static av_cold int tiff_end(AVCodecContext *avctx) ff_lzw_decode_close(&s->lzw); av_freep(&s->deinvert_buf); s->deinvert_buf_size = 0; + av_freep(&s->yuv_line); + s->yuv_line_size = 0; av_freep(&s->fax_buffer); s->fax_buffer_size = 0; return 0;