mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-03 02:58:02 +00:00
avcodec/speedhq: Check width
Fixes: out of array access
Fixes: 50014/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SPEEDHQ_fuzzer-4748914632294400
Alternatively the buffer size can be increased
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 f0395f9ef6
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6106a5c936
commit
51d8a691dd
@ -424,7 +424,7 @@ static int speedhq_decode_frame(AVCodecContext *avctx,
|
|||||||
uint32_t second_field_offset;
|
uint32_t second_field_offset;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (buf_size < 4 || avctx->width < 8)
|
if (buf_size < 4 || avctx->width < 8 || avctx->width % 8 != 0)
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
|
|
||||||
quality = buf[0];
|
quality = buf[0];
|
||||||
|
Loading…
Reference in New Issue
Block a user