summaryrefslogtreecommitdiff
path: root/hex.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2006-07-23 10:38:00 +0000
committerweidai <weidai11@users.noreply.github.com>2006-07-23 10:38:00 +0000
commit43dab0529840e79fcb856a68ed321b7949cf33d1 (patch)
treeab178a5940e7b7418bdd1c0284d538a7f1224c93 /hex.cpp
parent2afaa0e2a87f3a7263324ab6d26647851da07239 (diff)
downloadcryptopp-git-43dab0529840e79fcb856a68ed321b7949cf33d1.tar.gz
fix bug in HexDecoder::IsolatedInitialize (thanks to BaiYang)
Diffstat (limited to 'hex.cpp')
-rw-r--r--hex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/hex.cpp b/hex.cpp
index 31561676..b6484a5d 100644
--- a/hex.cpp
+++ b/hex.cpp
@@ -21,7 +21,7 @@ void HexEncoder::IsolatedInitialize(const NameValuePairs &parameters)
void HexDecoder::IsolatedInitialize(const NameValuePairs &parameters)
{
- BaseN_Decoder::Initialize(CombinedNameValuePairs(
+ BaseN_Decoder::IsolatedInitialize(CombinedNameValuePairs(
parameters,
MakeParameters(Name::DecodingLookupArray(), GetDefaultDecodingLookupArray(), false)(Name::Log2Base(), 4, true)));
}