diff options
Diffstat (limited to 'src/kdf/kdf1')
-rw-r--r-- | src/kdf/kdf1/kdf1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kdf/kdf1/kdf1.h b/src/kdf/kdf1/kdf1.h index 6a4b0f113..1c1fd7839 100644 --- a/src/kdf/kdf1/kdf1.h +++ b/src/kdf/kdf1/kdf1.h @@ -22,7 +22,7 @@ class BOTAN_DLL KDF1 : public KDF const byte P[], u32bit P_len) const; KDF1(HashFunction* h) : hash(h) {} - KDF1(const KDF1& other) : hash(other.hash->clone()) {} + KDF1(const KDF1& other) : KDF(), hash(other.hash->clone()) {} ~KDF1() { delete hash; } private: |