diff options
Diffstat (limited to 'src/server/authserver/Server/AuthSession.h')
-rw-r--r-- | src/server/authserver/Server/AuthSession.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/authserver/Server/AuthSession.h b/src/server/authserver/Server/AuthSession.h index cd757371421..71af8272501 100644 --- a/src/server/authserver/Server/AuthSession.h +++ b/src/server/authserver/Server/AuthSession.h @@ -92,8 +92,8 @@ private: bool VerifyVersion(uint8 const* a, int32 aLength, Trinity::Crypto::SHA1::Digest const& versionProof, bool isReconnect); Optional<Trinity::Crypto::SRP6> _srp6; - SessionKey _sessionKey; - std::array<uint8, 16> _reconnectProof; + SessionKey _sessionKey = {}; + std::array<uint8, 16> _reconnectProof = {}; AuthStatus _status; AccountInfo _accountInfo; |