summaryrefslogtreecommitdiff
path: root/libavcodec/8bps.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2022-08-22 22:10:09 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2022-08-28 22:06:45 +0200
commit2316d5ec1a95b13ff9a0ce80409fa367a041966d (patch)
treea40f7ac80f0fd88bd5d1017eb79ae445158c6199 /libavcodec/8bps.c
parente264a4a76e9a7443130a3f4c62fe112ee44d2cad (diff)
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>
Diffstat (limited to 'libavcodec/8bps.c')
-rw-r--r--libavcodec/8bps.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/8bps.c b/libavcodec/8bps.c
index c7dfeb81ee..cda3cdef3a 100644
--- a/libavcodec/8bps.c
+++ b/libavcodec/8bps.c
@@ -68,6 +68,9 @@ static int decode_frame(AVCodecContext *avctx, AVFrame *frame,
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;