mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix access to invalid data on reception of packet with size 0
This commit is contained in:
parent
8948907431
commit
944e79d7a6
1 changed files with 3 additions and 1 deletions
|
@ -2143,7 +2143,9 @@ void ConnectionReceiveThread::receive()
|
|||
LOG(derr_con<<m_connection->getDesc()
|
||||
<<"Receive(): Invalid incoming packet, "
|
||||
<<"size: " << received_size
|
||||
<<", protocol: " << readU32(&packetdata[0]) <<std::endl);
|
||||
<<", protocol: "
|
||||
<< ((received_size >= 4) ? readU32(&packetdata[0]) : -1)
|
||||
<< std::endl);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue