diff options
author | Jeffrey Walton <noloader@gmail.com> | 2017-08-18 05:02:06 -0400 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2017-08-18 05:02:06 -0400 |
commit | b61953a7a7f7a55849203f81ca8ae39c5c04ab8f (patch) | |
tree | 3958af3b36f9ccb00f19ae2f7c7d0d97b0da9254 | |
parent | 5ef2b814bc842eed6923d29591dbc4a962c104c6 (diff) | |
download | cryptopp-git-b61953a7a7f7a55849203f81ca8ae39c5c04ab8f.tar.gz |
Clear Coverity finding UNINIT_CTOR (CID 182771)
-rw-r--r-- | aria.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -43,6 +43,9 @@ class ARIA : public ARIA_Info, public BlockCipherDocumentation public:
class CRYPTOPP_NO_VTABLE Base : public BlockCipherImpl<ARIA_Info>
{
+ public:
+ Base() : m_rounds(0) {}
+
protected:
void UncheckedSetKey(const byte *key, unsigned int keylen, const NameValuePairs ¶ms);
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
|