Commit 22aed776 authored by Mark Thompson's avatar Mark Thompson

cbs_h2645: Fix memory leak on when reading SEI fails

parent 476d3013
...@@ -821,6 +821,7 @@ static int cbs_h264_read_nal_unit(CodedBitstreamContext *ctx, ...@@ -821,6 +821,7 @@ static int cbs_h264_read_nal_unit(CodedBitstreamContext *ctx,
err = cbs_h264_read_sei(ctx, &bc, sei); err = cbs_h264_read_sei(ctx, &bc, sei);
if (err < 0) { if (err < 0) {
cbs_h264_free_sei(sei); cbs_h264_free_sei(sei);
av_free(sei);
return err; return err;
} }
......
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