mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 10:24:13 -06:00
9.09 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
2fed872194
commit
1fbaf0aac5
@@ -623,8 +623,7 @@ HRESULT CDecoder::DecodeLZ(bool &keepDecompressing)
|
||||
UInt32 number = m_MainDecoder.DecodeSymbol(&m_InBitStream);
|
||||
if (number < 256)
|
||||
{
|
||||
PutByte(Byte(number));
|
||||
|
||||
PutByte((Byte)number);
|
||||
continue;
|
||||
}
|
||||
else if (number == kSymbolReadTable)
|
||||
@@ -640,6 +639,8 @@ HRESULT CDecoder::DecodeLZ(bool &keepDecompressing)
|
||||
}
|
||||
else if (number == 258)
|
||||
{
|
||||
if (length == 0)
|
||||
return S_FALSE;
|
||||
}
|
||||
else if (number < kSymbolRep + 4)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user