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/Compress/Implode/ImplodeHuffmanDecoder.cpp')
-rwxr-xr-x7zip/Compress/Implode/ImplodeHuffmanDecoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/7zip/Compress/Implode/ImplodeHuffmanDecoder.cpp b/7zip/Compress/Implode/ImplodeHuffmanDecoder.cpp
index 2fbb77fd..ad2061c3 100755
--- a/7zip/Compress/Implode/ImplodeHuffmanDecoder.cpp
+++ b/7zip/Compress/Implode/ImplodeHuffmanDecoder.cpp
@@ -65,7 +65,7 @@ bool CDecoder::SetCodeLengths(const Byte *codeLengths)
UInt32 CDecoder::DecodeSymbol(CInBit *inStream)
{
- UInt32 numBits;
+ UInt32 numBits = 0;
UInt32 value = inStream->GetValue(kNumBitsInLongestCode);
int i;
for(i = kNumBitsInLongestCode; i > 0; i--)