mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 16:02:08 +02:00
Merge pull request #12967 from SimonWalton-HiFi/hmac-shortid-merge-fix
Fix for null sourceNode use
This commit is contained in:
commit
91197cadcf
2 changed files with 2 additions and 2 deletions
|
@ -617,7 +617,7 @@ bool DomainServer::isPacketVerified(const udt::Packet& packet) {
|
|||
}
|
||||
} else {
|
||||
HIFI_FDEBUG("Packet of type" << headerType
|
||||
<< "received from unknown node with UUID" << uuidStringWithoutCurlyBraces(sourceNode->getUUID()));
|
||||
<< "received from unknown node with Local ID" << localSourceID);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -358,7 +358,7 @@ bool LimitedNodeList::packetSourceAndHashMatchAndTrackBandwidth(const udt::Packe
|
|||
|
||||
} else {
|
||||
HIFI_FCDEBUG(networking(),
|
||||
"Packet of type" << headerType << "received from unknown node with UUID" << uuidStringWithoutCurlyBraces(sourceID));
|
||||
"Packet of type" << headerType << "received from unknown node with Local ID" << sourceLocalID);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue