Core/Misc: Fixed uninitialized values

CID 1254611 1377296 1377728 1377727
This commit is contained in:
Shauren
2017-07-17 19:10:32 +02:00
parent f677c71263
commit ca9b0b029f
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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);