mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-13 02:41:37 +00:00
escape124: Fix long == 64 assumtation.
Found-by: Nicolas Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3a1ca240d9
commit
7e5a622525
@ -90,7 +90,7 @@ static CodeBook unpack_codebook(GetBitContext* gb, unsigned depth,
|
||||
unsigned i, j;
|
||||
CodeBook cb = { 0 };
|
||||
|
||||
if (!can_safely_read(gb, size * 34L))
|
||||
if (!can_safely_read(gb, (uint64_t)size * 34))
|
||||
return cb;
|
||||
|
||||
if (size >= INT_MAX / sizeof(MacroBlock))
|
||||
|
Loading…
Reference in New Issue
Block a user