Clear Coverity UNINIT_CTOR (CID 177741)

This was a valid finding, but the only way to get into the codepath leaving the hash unkeyed.
pull/398/head
Jeffrey Walton 2017-03-17 21:48:52 -04:00
parent 690baaae97
commit 08f9b3ff9e
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public:
CRYPTOPP_CONSTANT(DIGESTSIZE=T::BLOCKSIZE) CRYPTOPP_CONSTANT(DIGESTSIZE=T::BLOCKSIZE)
CRYPTOPP_CONSTANT(BLOCKSIZE=T::BLOCKSIZE) CRYPTOPP_CONSTANT(BLOCKSIZE=T::BLOCKSIZE)
Poly1305_Base() : m_used(true) {} Poly1305_Base() : m_idx(0), m_used(true) {}
void Resynchronize (const byte *iv, int ivLength=-1); void Resynchronize (const byte *iv, int ivLength=-1);
void GetNextIV (RandomNumberGenerator &rng, byte *iv); void GetNextIV (RandomNumberGenerator &rng, byte *iv);