mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 20:24:05 -06:00
16.01
This commit is contained in:
committed by
Kornel Lesiński
parent
66ac98bb02
commit
bec3b479dc
@@ -639,10 +639,10 @@ HRESULT CDecoder::DecodeLZ()
|
||||
rep0 = dist;
|
||||
}
|
||||
|
||||
UInt32 sym = m_LenDecoder.Decode(&_bitStream);
|
||||
if (sym >= kLenTableSize)
|
||||
const UInt32 sym2 = m_LenDecoder.Decode(&_bitStream);
|
||||
if (sym2 >= kLenTableSize)
|
||||
break; // return S_FALSE;
|
||||
len = SlotToLen(_bitStream, sym);
|
||||
len = SlotToLen(_bitStream, sym2);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user