From 1974ed5bbedc4c8c0d37709dd56b26875f9b2c97 Mon Sep 17 00:00:00 2001 From: weidai Date: Sun, 23 Jul 2006 10:38:00 +0000 Subject: 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 --- hex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hex.cpp') 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 ¶meters) void HexDecoder::IsolatedInitialize(const NameValuePairs ¶meters) { - BaseN_Decoder::Initialize(CombinedNameValuePairs( + BaseN_Decoder::IsolatedInitialize(CombinedNameValuePairs( parameters, MakeParameters(Name::DecodingLookupArray(), GetDefaultDecodingLookupArray(), false)(Name::Log2Base(), 4, true))); } -- cgit v1.2.1