summaryrefslogtreecommitdiff
path: root/hex.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2006-07-23 10:38:00 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2006-07-23 10:38:00 +0000
commit1974ed5bbedc4c8c0d37709dd56b26875f9b2c97 (patch)
treeab178a5940e7b7418bdd1c0284d538a7f1224c93 /hex.cpp
parent8fef719b612efff833521d33a11ae5389c5f7924 (diff)
downloadcryptopp-1974ed5bbedc4c8c0d37709dd56b26875f9b2c97.tar.gz
fix bug in HexDecoder::IsolatedInitialize (thanks to BaiYang)
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@231 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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 3156167..b6484a5 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)));
}