summaryrefslogtreecommitdiff
path: root/base32.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-01-11 23:36:46 -0500
committerJeffrey Walton <noloader@gmail.com>2016-01-11 23:36:46 -0500
commit9a5e359bb3795bf33073d1fa4a3a63a151312b33 (patch)
tree91c99cb30f31a79f9e25e7637b064af55a53c4f5 /base32.cpp
parentf16bd037227f9881571fd0905559ccf6ad95cc70 (diff)
downloadcryptopp-git-9a5e359bb3795bf33073d1fa4a3a63a151312b33.tar.gz
Fixed IsolatedInitialize (Issue 108)
Diffstat (limited to 'base32.cpp')
-rw-r--r--base32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/base32.cpp b/base32.cpp
index 80ca4561..3c7e6ee9 100644
--- a/base32.cpp
+++ b/base32.cpp
@@ -18,7 +18,7 @@ void Base32Encoder::IsolatedInitialize(const NameValuePairs &parameters)
void Base32Decoder::IsolatedInitialize(const NameValuePairs &parameters)
{
- BaseN_Decoder::Initialize(CombinedNameValuePairs(
+ BaseN_Decoder::IsolatedInitialize(CombinedNameValuePairs(
parameters,
MakeParameters(Name::DecodingLookupArray(), GetDefaultDecodingLookupArray(), false)(Name::Log2Base(), 5, true)));
}