You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
escape124: Fix long == 64 assumtation.
Found-by: Nicolas Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -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))
|
||||
|
Reference in New Issue
Block a user