For Coverity.

This commit is contained in:
Jeff Young 2022-02-17 14:06:12 +00:00
parent c89bb8d0cf
commit b9a834e600
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ MD5_HASH& MD5_HASH::operator=( const MD5_HASH& aOther )
void MD5_HASH::Init()
{
m_valid = false;
md5_init(&m_ctx);
md5_init( &m_ctx );
memset( m_hash, 0, 16 );
}