mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/shorten: Fix bitstream end check in read_header()
Fixes: Timeout Fixes: 9961/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SHORTEN_fuzzer-5687856176562176 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
71bf033050
commit
28b80c2d52
@ -456,7 +456,7 @@ static int read_header(ShortenContext *s)
|
|||||||
}
|
}
|
||||||
|
|
||||||
skip_bytes = get_uint(s, NSKIPSIZE);
|
skip_bytes = get_uint(s, NSKIPSIZE);
|
||||||
if ((unsigned)skip_bytes > get_bits_left(&s->gb)/8) {
|
if ((unsigned)skip_bytes > FFMAX(get_bits_left(&s->gb), 0)/8) {
|
||||||
av_log(s->avctx, AV_LOG_ERROR, "invalid skip_bytes: %d\n", skip_bytes);
|
av_log(s->avctx, AV_LOG_ERROR, "invalid skip_bytes: %d\n", skip_bytes);
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user