[FFmpeg-devel] [PATCH 2/3] avcodec/h265_metadata: fix memory leak in case of output packet creation failure
James Almer
jamrial at gmail.com
Tue Mar 20 05:55:27 EET 2018
Some function calls may fail after the output packet is initialized.
Signed-off-by: James Almer <jamrial at gmail.com>
---
libavcodec/h265_metadata_bsf.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavcodec/h265_metadata_bsf.c b/libavcodec/h265_metadata_bsf.c
index 8759e410f3..59ea67f718 100644
--- a/libavcodec/h265_metadata_bsf.c
+++ b/libavcodec/h265_metadata_bsf.c
@@ -324,6 +324,8 @@ static int h265_metadata_filter(AVBSFContext *bsf, AVPacket *out)
fail:
ff_cbs_fragment_uninit(ctx->cbc, au);
+ if (err < 0)
+ av_packet_unref(&out);
av_packet_free(&in);
return err;
--
2.16.2
More information about the ffmpeg-devel
mailing list