mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 00:52:58 +02: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;
|
bool hasOptionalBanParameters = false;
|
||||||
int banParameters;
|
int banParameters;
|
||||||
bool banByUsername;
|
bool banByUsername = false;
|
||||||
bool banByFingerprint;
|
bool banByFingerprint = false;
|
||||||
bool banByIP;
|
bool banByIP = false;
|
||||||
// pull optional ban parameters from the packet
|
// pull optional ban parameters from the packet
|
||||||
if (message.data()->getSize() == (NUM_BYTES_RFC4122_UUID + sizeof(int))) {
|
if (message.data()->getSize() == (NUM_BYTES_RFC4122_UUID + sizeof(int))) {
|
||||||
hasOptionalBanParameters = true;
|
hasOptionalBanParameters = true;
|
||||||
|
|
Loading…
Reference in a new issue