This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit c40318d663df5dcdf3e960a6ae2bb0ae87b53392 Author: Lynne <[email protected]> AuthorDate: Mon Mar 2 08:50:40 2026 +0100 Commit: Lynne <[email protected]> CommitDate: Sat Mar 7 11:56:47 2026 +0000 aacdec_usac_mps212: Fix CID 1681701 Fixes Coverity issue #1681701 --- 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 4629b4a2f0..8c4e4673fb 100644 --- a/libavcodec/aac/aacdec_usac_mps212.c +++ b/libavcodec/aac/aacdec_usac_mps212.c @@ -806,7 +806,7 @@ int ff_aac_map_index_data(AACMPSLosslessData *ld, /* Prepare data */ int interpolate[MPS_MAX_PARAM_SETS] = { 0 }; - int16_t tmp_idx_data[MPS_MAX_PARAM_SETS][MPS_MAX_PARAM_BANDS]; + int16_t tmp_idx_data[MPS_MAX_PARAM_SETS][MPS_MAX_PARAM_BANDS] = { 0 }; for (int i = 0; i < nb_param_sets; i++) { if (ld->data_mode[i] == 0) { ld->coarse_quant_no[i] = 0; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
