mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Initialize uninitialized variables
This commit is contained in:
parent
984f11ddf4
commit
c3789e3ea1
1 changed files with 3 additions and 3 deletions
|
@ -890,9 +890,9 @@ void DomainServerSettingsManager::processNodeKickRequestPacket(QSharedPointer<Re
|
|||
|
||||
bool hasOptionalBanParameters = false;
|
||||
int banParameters;
|
||||
bool banByUsername;
|
||||
bool banByFingerprint;
|
||||
bool banByIP;
|
||||
bool banByUsername = false;
|
||||
bool banByFingerprint = false;
|
||||
bool banByIP = false;
|
||||
// pull optional ban parameters from the packet
|
||||
if (message.data()->getSize() == (NUM_BYTES_RFC4122_UUID + sizeof(int))) {
|
||||
hasOptionalBanParameters = true;
|
||||
|
|
Loading…
Reference in a new issue