Merge branch 'packet-acceptance' into udp-client

This commit is contained in:
Jack Garrard 2022-10-23 14:41:48 -07:00
commit 968f513bf2
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ bool SocketClient::recv() {
if (!(header->mType > PacketType::UNKNOWN && header->mType < PacketType::End)) {
Logger::log("Failed to acquire valid packet type! Packet Type: %d Full Packet Size %d valread size: %d", header->mType, fullSize, valread);
free(packetBuf);
mHeap->free(packetBuf);
return true;
}