diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2022-06-09 22:36:00 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2022-06-23 22:03:02 +0200 |
commit | b7e30a13d4e4557b87f977b76a6bb5e3cbe5ac78 (patch) | |
tree | 20fab0445372eb14eead6803f5ed1226298eead2 /libavcodec | |
parent | d8ee01425459aaafe36acc7743b3f9f28a01821b (diff) | |
download | ffmpeg-b7e30a13d4e4557b87f977b76a6bb5e3cbe5ac78.tar.gz |
avcodec/cdgraphics: limit scrolling to the line
Fixes: out of array access
Fixes: 47877/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CDGRAPHICS_fuzzer-5690504626438144
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cdgraphics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cdgraphics.c b/libavcodec/cdgraphics.c index b851ec430b..73654019e6 100644 --- a/libavcodec/cdgraphics.c +++ b/libavcodec/cdgraphics.c @@ -240,7 +240,7 @@ static void cdg_scroll(CDGraphicsContext *cc, uint8_t *data, for (y = FFMAX(0, vinc); y < FFMIN(CDG_FULL_HEIGHT + vinc, CDG_FULL_HEIGHT); y++) memcpy(out + FFMAX(0, hinc) + stride * y, in + FFMAX(0, hinc) - hinc + (y - vinc) * stride, - FFMIN(stride + hinc, stride)); + FFABS(stride) - FFABS(hinc)); if (vinc > 0) cdg_fill_wrapper(0, 0, out, |