mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
Core/NetworkIO: Fixed uninitialized fields in ByteBuffer for received packets
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
|
||||
#include <sstream>
|
||||
|
||||
ByteBuffer::ByteBuffer(MessageBuffer&& buffer) : _rpos(0), _wpos(0), _storage(buffer.Move())
|
||||
ByteBuffer::ByteBuffer(MessageBuffer&& buffer) : _rpos(0), _wpos(0), _bitpos(0), _curbitval(0), _storage(buffer.Move())
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user