[FFmpeg-devel] [PATCH] avcodec/rawdec: Free bitstream_buf

Andreas Rheinhardt andreas.rheinhardt at outlook.com
Sat Apr 3 12:59:09 EEST 2021


Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
This leak can be reproduced with mlv/M19-0333-cut.MLV from the
FATE-suite; but it is currently only used for a demux test.
Will apply soon.

 libavcodec/rawdec.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c
index 1badb69180..d3756328ba 100644
--- a/libavcodec/rawdec.c
+++ b/libavcodec/rawdec.c
@@ -484,6 +484,7 @@ static av_cold int raw_close_decoder(AVCodecContext *avctx)
     RawVideoContext *context = avctx->priv_data;
 
     av_buffer_unref(&context->palette);
+    av_freep(&context->bitstream_buf);
     return 0;
 }
 
-- 
2.27.0



More information about the ffmpeg-devel mailing list