Commit 7cbb6ee2 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avcodec/h264_metadata_bsf: Fix invalid av_freep

This bug was introduced in 3c8a2a11.
Reviewed-by: 's avatarJames Almer <jamrial@gmail.com>
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
(cherry picked from commit 04e06beb0ab98a6eb85df32f7809b1143e4bebe7)
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
parent acefb59a
...@@ -528,7 +528,7 @@ static int h264_metadata_filter(AVBSFContext *bsf, AVPacket *pkt) ...@@ -528,7 +528,7 @@ static int h264_metadata_filter(AVBSFContext *bsf, AVPacket *pkt)
if (err < 0) { if (err < 0) {
av_log(bsf, AV_LOG_ERROR, "Failed to attach extracted " av_log(bsf, AV_LOG_ERROR, "Failed to attach extracted "
"displaymatrix side data to packet.\n"); "displaymatrix side data to packet.\n");
av_freep(matrix); av_free(matrix);
goto fail; goto fail;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment