mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/rv40: Test remaining space in loop of get_dimension()
Fixes infinite loop Fixes: 178/fuzz-3-ffmpeg_VIDEO_AV_CODEC_ID_RV40_fuzzer Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
1abcd972c4
commit
1546d487cf
|
@ -109,6 +109,8 @@ static int get_dimension(GetBitContext *gb, const int *dim)
|
||||||
val = dim[get_bits1(gb) - val];
|
val = dim[get_bits1(gb) - val];
|
||||||
if(!val){
|
if(!val){
|
||||||
do{
|
do{
|
||||||
|
if (get_bits_left(gb) < 8)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
t = get_bits(gb, 8);
|
t = get_bits(gb, 8);
|
||||||
val += t << 2;
|
val += t << 2;
|
||||||
}while(t == 0xFF);
|
}while(t == 0xFF);
|
||||||
|
|
Loading…
Reference in New Issue