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:
gregorycu 2016-01-04 16:15:50 +11:00 committed by Loic Blot
parent 09a6910dc7
commit e7e9171f37
1 changed files with 1 additions and 1 deletions

View File

@ -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);