mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/magicyuv: Check that vlc len is not too large
Fixes: runtime error: shift exponent -95 is negative Fixes: 2568/clusterfuzz-testcase-minimized-4926115716005888 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
c28f648b19
commit
341f01290c
|
@ -104,7 +104,7 @@ static int huff_build10(VLC *vlc, uint8_t *len)
|
|||
for (i = 0; i < 1024; i++) {
|
||||
he[i].sym = 1023 - i;
|
||||
he[i].len = len[i];
|
||||
if (len[i] == 0)
|
||||
if (len[i] == 0 || len[i] > 32)
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
AV_QSORT(he, 1024, HuffEntry, huff_cmp_len10);
|
||||
|
@ -136,7 +136,7 @@ static int huff_build12(VLC *vlc, uint8_t *len)
|
|||
for (i = 0; i < 4096; i++) {
|
||||
he[i].sym = 4095 - i;
|
||||
he[i].len = len[i];
|
||||
if (len[i] == 0)
|
||||
if (len[i] == 0 || len[i] > 32)
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
AV_QSORT(he, 4096, HuffEntry, huff_cmp_len12);
|
||||
|
@ -168,7 +168,7 @@ static int huff_build(VLC *vlc, uint8_t *len)
|
|||
for (i = 0; i < 256; i++) {
|
||||
he[i].sym = 255 - i;
|
||||
he[i].len = len[i];
|
||||
if (len[i] == 0)
|
||||
if (len[i] == 0 || len[i] > 32)
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
AV_QSORT(he, 256, HuffEntry, huff_cmp_len);
|
||||
|
|
Loading…
Reference in New Issue