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 '7zip/Archive/GZip/GZipHandler.h')
-rwxr-xr-x7zip/Archive/GZip/GZipHandler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/7zip/Archive/GZip/GZipHandler.h b/7zip/Archive/GZip/GZipHandler.h
index 130c809c..4c8f17ef 100755
--- a/7zip/Archive/GZip/GZipHandler.h
+++ b/7zip/Archive/GZip/GZipHandler.h
@@ -65,10 +65,10 @@ private:
UInt64 m_PackSize;
CMyComPtr<IInStream> m_Stream;
CCompressionMethodMode m_Method;
+ UInt32 m_Level;
void InitMethodProperties()
{
- m_Method.NumPasses = 1;
- m_Method.NumFastBytes = 32;
+ m_Level = m_Method.NumPasses = m_Method.NumFastBytes = 0xFFFFFFFF;
}
};