Core/Misc: Fixed uninitialized values
CID 1254611 1377296 1377728 1377727
This commit is contained in:
@@ -71,7 +71,7 @@ uint8 const WorldSocket::ContinuedSessionSeed[16] = { 0x16, 0xAD, 0x0C, 0xD4, 0x
|
||||
|
||||
WorldSocket::WorldSocket(tcp::socket&& socket) : Socket(std::move(socket)),
|
||||
_type(CONNECTION_TYPE_REALM), _key(0), _OverSpeedPings(0),
|
||||
_worldSession(nullptr), _authed(false), _compressionStream(nullptr)
|
||||
_worldSession(nullptr), _authed(false), _sendBufferSize(4096), _compressionStream(nullptr)
|
||||
{
|
||||
_serverChallenge.SetRand(8 * 16);
|
||||
_headerBuffer.Resize(SizeOfClientHeader);
|
||||
|
||||
Reference in New Issue
Block a user