summaryrefslogtreecommitdiff
path: root/zinflate.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-07-19 11:05:48 -0400
committerJeffrey Walton <noloader@gmail.com>2015-07-19 11:05:48 -0400
commitd04b813e8b078e717992b86b8b6103db0bd2cec3 (patch)
tree3fe613a3d2c40ef30f6fdc887006ed7b8d05e890 /zinflate.cpp
parente874cd2ef8cf038627e14a59ae47b4034c7c18c1 (diff)
downloadcryptopp-git-d04b813e8b078e717992b86b8b6103db0bd2cec3.tar.gz
Cleared -Wmaybe-uninitialized under GCC 5.1
Diffstat (limited to 'zinflate.cpp')
-rw-r--r--zinflate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zinflate.cpp b/zinflate.cpp
index 75175472..072ca267 100644
--- a/zinflate.cpp
+++ b/zinflate.cpp
@@ -402,7 +402,7 @@ void Inflator::DecodeHeader()
HuffmanDecoder codeLengthDecoder(codeLengths, 19);
for (i = 0; i < hlit+257+hdist+1; )
{
- unsigned int k, count, repeater;
+ unsigned int k=0, count=0, repeater=0;
bool result = codeLengthDecoder.Decode(m_reader, k);
if (!result)
throw UnexpectedEndErr();