mirror of https://git.ffmpeg.org/ffmpeg.git
swscale/utils: Fix xInc overflow
Fixes: signed integer overflow: 2 * 1073741824 cannot be represented in type 'int'
Fixes: 67802/clusterfuzz-testcase-minimized-ffmpeg_SWS_fuzzer-6249515855183872
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 1a9eda65d0
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
71da96b772
commit
4bb78609a3
|
@ -511,7 +511,7 @@ static av_cold int initFilter(int16_t **outFilter, int32_t **filterPos,
|
|||
filter[i * filterSize + j] = coeff;
|
||||
xx++;
|
||||
}
|
||||
xDstInSrc += 2 * xInc;
|
||||
xDstInSrc += 2LL * xInc;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue