1
0

ByteBuffer: Writing a string doesn't modify it (missing const).

This commit is contained in:
madmaxoft
2013-10-31 23:47:22 +01:00
parent feaea31b78
commit 080ee3b2a1
2 changed files with 3 additions and 3 deletions

View File

@@ -555,7 +555,7 @@ bool cByteBuffer::WriteVarInt(UInt32 a_Value)
bool cByteBuffer::WriteVarUTF8String(AString & a_Value)
bool cByteBuffer::WriteVarUTF8String(const AString & a_Value)
{
CHECK_THREAD;
CheckValid();