diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2022-08-22 22:10:09 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2022-09-01 00:41:28 +0200 |
commit | a221a3bfafb152a9514e185376332b898f20b1c0 (patch) | |
tree | fa8dd0f349930d0cc088b354d6a683cae761f549 | |
parent | 9e92d14dbf6ae9bbfe48dc8769fa8b30fd63bc59 (diff) | |
download | ffmpeg-a221a3bfafb152a9514e185376332b898f20b1c0.tar.gz |
libavcodec/8bps: Check that line lengths fit within the buffer
Fixes: Timeout
Fixes: undefined pointer arithmetic
Fixes: 50330/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EIGHTBPS_fuzzer-5436287485607936
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 2316d5ec1a95b13ff9a0ce80409fa367a041966d)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/8bps.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/8bps.c b/libavcodec/8bps.c index 6865b9b12e..a84999b455 100644 --- a/libavcodec/8bps.c +++ b/libavcodec/8bps.c @@ -71,6 +71,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, unsigned char *planemap = c->planemap; int ret; + if (buf_size < planes * height *2) + return AVERROR_INVALIDDATA; + if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) return ret; |