mirror of https://git.ffmpeg.org/ffmpeg.git
qdm2: check array index before use, fix out of array accesses
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commita7ee6281f7
) CC: libav-stable@libav.org Signed-off-by: Reinhard Tartler <siretart@tauware.de> (cherry picked from commit39bec05ed4
) Signed-off-by: Reinhard Tartler <siretart@tauware.de> (cherry picked from commit0b2b8ab979
) Signed-off-by: Reinhard Tartler <siretart@tauware.de>
This commit is contained in:
parent
d4a24e43ed
commit
b5736759ee
|
@ -1250,6 +1250,11 @@ static void qdm2_decode_super_block (QDM2Context *q)
|
|||
for (i = 0; packet_bytes > 0; i++) {
|
||||
int j;
|
||||
|
||||
if (i >= FF_ARRAY_ELEMS(q->sub_packet_list_A)) {
|
||||
SAMPLES_NEEDED_2("too many packet bytes");
|
||||
return;
|
||||
}
|
||||
|
||||
q->sub_packet_list_A[i].next = NULL;
|
||||
|
||||
if (i > 0) {
|
||||
|
|
Loading…
Reference in New Issue