unlzma: fix SEGV, closes 10436
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
0402cb32df
commit
9ac42c5005
@ -450,8 +450,12 @@ unpack_lzma_stream(transformer_state_t *xstate)
|
|||||||
IF_NOT_FEATURE_LZMA_FAST(string:)
|
IF_NOT_FEATURE_LZMA_FAST(string:)
|
||||||
do {
|
do {
|
||||||
uint32_t pos = buffer_pos - rep0;
|
uint32_t pos = buffer_pos - rep0;
|
||||||
if ((int32_t)pos < 0)
|
if ((int32_t)pos < 0) {
|
||||||
pos += header.dict_size;
|
pos += header.dict_size;
|
||||||
|
/* bug 10436 has an example file where this triggers: */
|
||||||
|
if ((int32_t)pos < 0)
|
||||||
|
goto bad;
|
||||||
|
}
|
||||||
previous_byte = buffer[pos];
|
previous_byte = buffer[pos];
|
||||||
IF_NOT_FEATURE_LZMA_FAST(one_byte2:)
|
IF_NOT_FEATURE_LZMA_FAST(one_byte2:)
|
||||||
buffer[buffer_pos++] = previous_byte;
|
buffer[buffer_pos++] = previous_byte;
|
||||||
|
Loading…
Reference in New Issue
Block a user