[FFmpeg-devel] [PATCH] avcodec/h264_metadata_bsf: Fix invalid av_freep

Andreas Rheinhardt andreas.rheinhardt at gmail.com
Sat Jul 4 22:22:34 EEST 2020


This bug was introduced in 3c8a2a1180f03ca6b299ebc27eef21ae86635ca0.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
---
Sorry for this.

 libavcodec/h264_metadata_bsf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/h264_metadata_bsf.c b/libavcodec/h264_metadata_bsf.c
index 99017653d0..cef054bd65 100644
--- a/libavcodec/h264_metadata_bsf.c
+++ b/libavcodec/h264_metadata_bsf.c
@@ -528,7 +528,7 @@ static int h264_metadata_filter(AVBSFContext *bsf, AVPacket *pkt)
                 if (err < 0) {
                     av_log(bsf, AV_LOG_ERROR, "Failed to attach extracted "
                            "displaymatrix side data to packet.\n");
-                    av_freep(matrix);
+                    av_free(matrix);
                     goto fail;
                 }
             }
-- 
2.20.1



More information about the ffmpeg-devel mailing list