mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-16 00:11:42 -06:00
4.43 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
0ec42ff829
commit
804edc5756
@@ -47,7 +47,7 @@ public:
|
||||
{
|
||||
for (;m_BitPos >= 8; m_BitPos -= 8)
|
||||
{
|
||||
Byte b;
|
||||
Byte b = 0;
|
||||
if (!m_Stream.ReadByte(b))
|
||||
{
|
||||
b = 0xFF; // check it
|
||||
@@ -88,9 +88,9 @@ public:
|
||||
|
||||
void Normalize()
|
||||
{
|
||||
for (;this->m_BitPos >= 8; this->m_BitPos -= 8)
|
||||
for (; this->m_BitPos >= 8; this->m_BitPos -= 8)
|
||||
{
|
||||
Byte b;
|
||||
Byte b = 0;
|
||||
if (!this->m_Stream.ReadByte(b))
|
||||
{
|
||||
b = 0xFF; // check it
|
||||
|
||||
Reference in New Issue
Block a user