mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-14 22:22:59 +02:00
avcodec/jpeg2000: Fix runtime error: signed integer overflow: 4185 + 2147483394 cannot be represented in type 'int'
Fixes: 1870/clusterfuzz-testcase-minimized-4686788029317120 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 781f88bb26534ececc76eaa972f02536ba2f0f55) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
5c1c1e89de
commit
9495075a7f
@ -220,7 +220,7 @@ static inline int ff_jpeg2000_ceildivpow2(int a, int b)
|
|||||||
|
|
||||||
static inline int ff_jpeg2000_ceildiv(int a, int b)
|
static inline int ff_jpeg2000_ceildiv(int a, int b)
|
||||||
{
|
{
|
||||||
return (a + b - 1) / b;
|
return (a + (int64_t)b - 1) / b;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* TIER-1 routines */
|
/* TIER-1 routines */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user