mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-26 21:10:34 +00:00
bink: check quant_index, fix out of array read
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
612ecfbbbb
commit
e70144cba1
@ -674,6 +674,10 @@ static int read_dct_coeffs(GetBitContext *gb, int32_t block[64], const uint8_t *
|
||||
quant_idx = get_bits(gb, 4);
|
||||
} else {
|
||||
quant_idx = q;
|
||||
if (quant_idx > 15U) {
|
||||
av_log(0, AV_LOG_ERROR, "quant_index %d out of range\n", quant_idx);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
}
|
||||
|
||||
quant = quant_matrices[quant_idx];
|
||||
|
Loading…
Reference in New Issue
Block a user