For Coverity.

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

View File

@ -59,6 +59,7 @@ void MD5_HASH::Init()
{ {
m_valid = false; m_valid = false;
md5_init( &m_ctx ); md5_init( &m_ctx );
memset( m_hash, 0, 16 );
} }