Kaydet (Commit) 02386ef8 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1079288 Uninitialized scalar field

Change-Id: I0fb9e547b73b563725eb8014f68224706df3c39d
üst 4a8a30f9
......@@ -51,8 +51,9 @@ EncryptionStandardHeader::EncryptionStandardHeader()
}
EncryptionVerifierAES::EncryptionVerifierAES()
: saltSize(SALT_LENGTH)
, encryptedVerifierHashSize(RTL_DIGEST_LENGTH_SHA1)
{
saltSize = SALT_LENGTH;
memset(salt, 0, sizeof(salt));
memset(encryptedVerifier, 0, sizeof(encryptedVerifier));
memset(encryptedVerifierHash, 0, sizeof(encryptedVerifierHash));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment