Commit 1f99939a authored by Michael Niedermayer's avatar Michael Niedermayer

j2kdec: Fix integer overflow leading to a segfault

Fixes Ticket776
Bug found by: Diana Elena Muscalu
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 0988a6a0
...@@ -321,7 +321,7 @@ int ff_j2k_dwt_init(DWTContext *s, uint16_t border[2][2], int decomp_levels, int ...@@ -321,7 +321,7 @@ int ff_j2k_dwt_init(DWTContext *s, uint16_t border[2][2], int decomp_levels, int
int i, j, lev = decomp_levels, maxlen, int i, j, lev = decomp_levels, maxlen,
b[2][2]; b[2][2];
if (decomp_levels >= FF_DWT_MAX_DECLVLS) if ((unsigned)decomp_levels >= FF_DWT_MAX_DECLVLS)
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
s->ndeclevels = decomp_levels; s->ndeclevels = decomp_levels;
s->type = type; s->type = type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment