This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 46cf8f18733c91597634fa01c03de33bbcfb582b Author: Lynne <[email protected]> AuthorDate: Mon Mar 2 08:49:41 2026 +0100 Commit: Lynne <[email protected]> CommitDate: Sat Mar 7 11:56:47 2026 +0000 aacdec_usac_mps212: fix CID 1681703 Fixes Coverity issue #1681703 --- libavcodec/aac/aacdec_usac_mps212.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/aac/aacdec_usac_mps212.c b/libavcodec/aac/aacdec_usac_mps212.c index 61779cba1a..4629b4a2f0 100644 --- a/libavcodec/aac/aacdec_usac_mps212.c +++ b/libavcodec/aac/aacdec_usac_mps212.c @@ -793,7 +793,7 @@ int ff_aac_map_index_data(AACMPSLosslessData *ld, if (nb_param_sets > MPS_MAX_PARAM_SETS) return AVERROR(EINVAL); - int data_mode_3_idx[MPS_MAX_PARAM_SETS]; + int data_mode_3_idx[MPS_MAX_PARAM_SETS] = { 0 }; int nb_data_mode_3 = 0; for (int i = 0; i < nb_param_sets; i++) { if (ld->data_mode[i] == 3) { _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
