[FFmpeg-devel] [PATCH] Fix leak of yuv_line in TiffContext.

Carl Hetherington lists at carlh.net
Tue Dec 11 01:52:16 EET 2018


Please review... I have used FFmpeg a lot but never suggested a patch
before :)

Signed-off-by: Carl Hetherington <cth at carlh.net>
---
 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;
-- 
2.17.1



More information about the ffmpeg-devel mailing list