mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 12:57:59 +02:00
uninitialized variable
This commit is contained in:
parent
b96e455b72
commit
bb0f6b4d28
1 changed files with 2 additions and 1 deletions
|
@ -48,7 +48,8 @@ LimitedNodeList::LimitedNodeList(unsigned short socketListenPort, unsigned short
|
||||||
_localSockAddr(),
|
_localSockAddr(),
|
||||||
_publicSockAddr(),
|
_publicSockAddr(),
|
||||||
_stunSockAddr(STUN_SERVER_HOSTNAME, STUN_SERVER_PORT),
|
_stunSockAddr(STUN_SERVER_HOSTNAME, STUN_SERVER_PORT),
|
||||||
_packetStatTimer()
|
_packetStatTimer(),
|
||||||
|
_thisNodeCanAdjustLocks(false)
|
||||||
{
|
{
|
||||||
static bool firstCall = true;
|
static bool firstCall = true;
|
||||||
if (firstCall) {
|
if (firstCall) {
|
||||||
|
|
Loading…
Reference in a new issue