aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-12-18 22:29:35 +0100
committerShauren <shauren.trinity@gmail.com>2024-12-18 22:29:35 +0100
commit4df06cee620b90f75010366fcad763f93a83793b (patch)
tree8a056729ae3d7729e208ffc933b878f35e60eb61 /src
parent8228a53109ba65059a69b400f1f3a15234c48f35 (diff)
Core/Auth: Fix missing initialization
Diffstat (limited to 'src')
-rw-r--r--src/server/bnetserver/Server/Session.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/bnetserver/Server/Session.cpp b/src/server/bnetserver/Server/Session.cpp
index a4f760a905a..c37c7029da5 100644
--- a/src/server/bnetserver/Server/Session.cpp
+++ b/src/server/bnetserver/Server/Session.cpp
@@ -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);
}