Core/Auth: Fix missing initialization

This commit is contained in:
Shauren
2024-12-18 22:29:35 +01:00
parent 8228a53109
commit 4df06cee62

View File

@@ -76,7 +76,7 @@ void Battlenet::Session::GameAccountInfo::LoadResult(Field const* fields)
Battlenet::Session::Session(boost::asio::ip::tcp::socket&& socket) : BattlenetSocket(std::move(socket), SslContext::instance()),
_accountInfo(new AccountInfo()), _gameAccountInfo(nullptr), _locale(),
_os(), _build(0), _timezoneOffset(0min), _ipCountry(), _clientSecret(), _authed(false), _requestToken(0)
_os(), _build(0), _clientInfo(), _timezoneOffset(0min), _ipCountry(), _clientSecret(), _authed(false), _requestToken(0)
{
_headerLengthBuffer.Resize(2);
}