omadec: Fix wrong number of array elements
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: David Goldwich <david.goldwich@gmail.com>
CC:libav-stable@libav.org
Signed-off-by: Anton Khirnov <anton@khirnov.net>
(cherry picked from commit 97f50e92b5
)
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
This commit is contained in:

committed by
Reinhard Tartler

parent
cdc47c4813
commit
35f9a0896e
@@ -263,7 +263,7 @@ static int decrypt_init(AVFormatContext *s, ID3v2ExtraMeta *em, uint8_t *header)
|
||||
!nprobe(s, gdata, geob->datasize, oc->n_val))
|
||||
break;
|
||||
}
|
||||
if (i >= sizeof(leaf_table)) {
|
||||
if (i >= FF_ARRAY_ELEMS(leaf_table)) {
|
||||
av_log(s, AV_LOG_ERROR, "Invalid key\n");
|
||||
return -1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user