fixed typo

This commit is contained in:
orignal 2018-07-18 12:56:46 -04:00
parent b99f828583
commit fc52b2b940

View File

@ -136,7 +136,7 @@ namespace crypto
#if (__GNUC__ == 4) && (__GNUC_MINOR__ < 8) // older than gcc 4.8
Poly1305(const uint8_t * key) : m_Leftover(0), m_Final(0)
{
memset (m_H, 0, sizeof (m_H));
memset (&m_H, 0, sizeof (m_H));
#else
Poly1305(const uint8_t * key) : m_Leftover(0), m_H{0}, m_Final(0)
{