diff options
author | Michael Niedermayer | 2013-10-24 15:24:24 +0200 |
---|---|---|
committer | Anton Khirnov | 2013-11-04 18:38:01 +0100 |
commit | 97f50e92b5cf3b47a76f75d76ed4340e822030db (patch) | |
tree | 53a2737288969b342fa742fa5283baf2096ee7cf /libavformat/omadec.c | |
parent | e73996954d8e00117056dcefb38ef3d4d2f37967 (diff) |
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>
Diffstat (limited to 'libavformat/omadec.c')
-rw-r--r-- | libavformat/omadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/omadec.c b/libavformat/omadec.c index e5a20903b0..98ccbdef9f 100644 --- a/libavformat/omadec.c +++ b/libavformat/omadec.c @@ -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 AVERROR_INVALIDDATA; } |