Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/Compress/LzhDecoder.h')
-rw-r--r--[-rwxr-xr-x]CPP/7zip/Compress/LzhDecoder.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/CPP/7zip/Compress/LzhDecoder.h b/CPP/7zip/Compress/LzhDecoder.h
index ed631e20..a805f9f9 100755..100644
--- a/CPP/7zip/Compress/LzhDecoder.h
+++ b/CPP/7zip/Compress/LzhDecoder.h
@@ -56,11 +56,12 @@ class CCoder :
CHuffmanDecoder<kNumDistanceSymbols> m_PHuffmanDecoder;
CHuffmanDecoder<kNumCSymbols> m_CHuffmanDecoder;
+ /*
void ReleaseStreams()
{
m_OutWindowStream.ReleaseStream();
- m_InBitStream.ReleaseStream();
}
+ */
class CCoderReleaser
{
@@ -72,7 +73,7 @@ class CCoder :
{
if (NeedFlush)
m_Coder->m_OutWindowStream.Flush();
- m_Coder->ReleaseStreams();
+ // m_Coder->ReleaseStreams();
}
};
friend class CCoderReleaser;