mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-05 08:26:51 +02:00
fix for bug #280: UMR in next->bits
exit as early as possible upon error. Change-Id: I4f7702228a146c31cab3c3d21079fa1fe6904cb2
This commit is contained in:
parent
578beeb8a0
commit
c0f7cc47f2
@ -428,14 +428,14 @@ static int ReadHuffmanCodes(VP8LDecoder* const dec, int xsize, int ysize,
|
|||||||
alphabet_size += 1 << color_cache_bits;
|
alphabet_size += 1 << color_cache_bits;
|
||||||
}
|
}
|
||||||
size = ReadHuffmanCode(alphabet_size, dec, code_lengths, next);
|
size = ReadHuffmanCode(alphabet_size, dec, code_lengths, next);
|
||||||
|
if (size == 0) {
|
||||||
|
goto Error;
|
||||||
|
}
|
||||||
if (is_trivial_literal && kLiteralMap[j] == 1) {
|
if (is_trivial_literal && kLiteralMap[j] == 1) {
|
||||||
is_trivial_literal = (next->bits == 0);
|
is_trivial_literal = (next->bits == 0);
|
||||||
}
|
}
|
||||||
total_size += next->bits;
|
total_size += next->bits;
|
||||||
next += size;
|
next += size;
|
||||||
if (size == 0) {
|
|
||||||
goto Error;
|
|
||||||
}
|
|
||||||
if (j <= ALPHA) {
|
if (j <= ALPHA) {
|
||||||
int local_max_bits = code_lengths[0];
|
int local_max_bits = code_lengths[0];
|
||||||
int k;
|
int k;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user