mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix for commit 87dcee6
It uses the wrong variable and only covers some use cases. This change covers all use cases.
This commit is contained in:
parent
09a6910dc7
commit
e7e9171f37
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ void NetworkPacket::putRawString(const char* src, u32 len)
|
|||
m_data.resize(m_datasize);
|
||||
}
|
||||
|
||||
if (m_datasize == 0)
|
||||
if (len == 0)
|
||||
return;
|
||||
|
||||
memcpy(&m_data[m_read_offset], src, len);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue