This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/7.1 in repository ffmpeg.
commit e68e2a1013c955822555754da445b80b4107a304 Author: James Almer <[email protected]> AuthorDate: Wed Mar 18 13:24:33 2026 -0300 Commit: Michael Niedermayer <[email protected]> CommitDate: Mon May 4 15:57:22 2026 +0200 avcodec/h2645_sei: don't use provider_code uninitialized Regression since 8172be423e05f9abe91432ec8dcb2ecf93a1e86d. Fixes Coverity issue CID 1689618. Signed-off-by: James Almer <[email protected]> (cherry picked from commit e22a1ed7120ef768ac699520e36fc572ca6e5cc4) Signed-off-by: Michael Niedermayer <[email protected]> --- libavcodec/h2645_sei.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h2645_sei.c b/libavcodec/h2645_sei.c index 62369dd37f..9ff8fb8a37 100644 --- a/libavcodec/h2645_sei.c +++ b/libavcodec/h2645_sei.c @@ -144,7 +144,7 @@ static int decode_registered_user_data_closed_caption(H2645SEIA53Caption *h, static int decode_registered_user_data(H2645SEI *h, GetByteContext *gb, enum AVCodecID codec_id, void *logctx) { - int country_code, provider_code; + int country_code, provider_code = -1; if (bytestream2_get_bytes_left(gb) < 3) return AVERROR_INVALIDDATA; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
