mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-11 14:07:13 -06:00
Update to 7-Zip 17.00 Beta
This commit is contained in:
@@ -49,8 +49,8 @@ HRESULT Decode(const Byte *in, size_t inSize, Byte *out, size_t outSize)
|
||||
for (unsigned i = 0; i < kNumSyms / 2; i++)
|
||||
{
|
||||
Byte b = in[i];
|
||||
levels[i * 2] = (Byte)(b & 0xF);
|
||||
levels[i * 2 + 1] = (Byte)(b >> 4);
|
||||
levels[(size_t)i * 2] = (Byte)(b & 0xF);
|
||||
levels[(size_t)i * 2 + 1] = (Byte)(b >> 4);
|
||||
}
|
||||
if (!huff.BuildFull(levels))
|
||||
return S_FALSE;
|
||||
|
||||
Reference in New Issue
Block a user