fix compile warning

This commit is contained in:
Max 2022-09-22 14:05:39 -04:00
parent 1cd344a838
commit 245ff05489
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class CryptoState
{
public:
CryptoState() :
kid(0), algid(0), mi(MESSAGE_INDICATOR_LENGTH)
mi(MESSAGE_INDICATOR_LENGTH), kid(0), algid(0)
{ }
public:
std::vector<uint8_t> mi;