This commit is contained in:
Igor Pavlov
2016-05-20 00:00:00 +00:00
committed by Kornel Lesiński
parent 66ac98bb02
commit bec3b479dc
88 changed files with 972 additions and 753 deletions
+3 -3
View File
@@ -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
{