[FFmpeg-devel] [PATCH 3/9] avcodec/webp: Check ref_x/y
Michael Niedermayer
michael at niedermayer.cc
Sat Aug 17 02:11:51 EEST 2024
Fixes: 70991/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WEBP_fuzzer-5544067620995072
Fixes: use of uninintailized value
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
---
libavcodec/webp.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/libavcodec/webp.c b/libavcodec/webp.c
index 7c2a5f0111f..b624458d675 100644
--- a/libavcodec/webp.c
+++ b/libavcodec/webp.c
@@ -704,6 +704,9 @@ static int decode_entropy_coded_image(WebPContext *s, enum ImageRole role,
ref_x = FFMAX(0, ref_x);
ref_y = FFMAX(0, ref_y);
+ if (ref_y == y && ref_x >= x)
+ return AVERROR_INVALIDDATA;
+
/* copy pixels
* source and dest regions can overlap and wrap lines, so just
* copy per-pixel */
--
2.46.0
More information about the ffmpeg-devel
mailing list