Merge pull request #13092 from Atlante45/fix/asan-warning

Fix uninitialized boolean (asan warning)
This commit is contained in:
John Conklin II 2018-05-03 15:46:37 -07:00 committed by GitHub
commit 7d424edd9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -167,7 +167,7 @@ private:
HifiSockAddr _assignmentServerSocket;
bool _isShuttingDown { false };
QTimer _keepAlivePingTimer;
bool _requestsDomainListData;
bool _requestsDomainListData { false };
mutable QReadWriteLock _ignoredSetLock;
tbb::concurrent_unordered_set<QUuid, UUIDHasher> _ignoredNodeIDs;