[FFmpeg-cvslog] avcodec/utils: the IFF_ILBM implementation assumes that there are a multiple of 16 allocated

Michael Niedermayer git at videolan.org
Sun Jun 4 22:06:04 EEST 2023


ffmpeg | branch: release/3.4 | Michael Niedermayer <michael at niedermayer.cc> | Sun Apr 16 16:56:40 2023 +0200| [40f962e56961c980c5282466efc50fc02a543aeb] | committer: Michael Niedermayer

avcodec/utils: the IFF_ILBM implementation assumes that there are a multiple of 16 allocated

Fixes: out of array access
Fixes: 45982/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5124452659888128
Fixes: 45982/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-6362836707442688

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit 34056a94eab5f8fbc7e0b8510f7c9851931f23b7)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=40f962e56961c980c5282466efc50fc02a543aeb
---

 libavcodec/utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index e431d0b8af..dbd87a787d 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -426,7 +426,7 @@ void avcodec_align_dimensions2(AVCodecContext *s, int *width, int *height,
     }
 
     if (s->codec_id == AV_CODEC_ID_IFF_ILBM) {
-        w_align = FFMAX(w_align, 8);
+        w_align = FFMAX(w_align, 16);
     }
 
     *width  = FFALIGN(*width, w_align);



More information about the ffmpeg-cvslog mailing list