1
0

Fixed Alignment issue in ByteBuffer

This commit is contained in:
Tycho
2014-03-10 11:56:23 -07:00
parent 2eca30aebc
commit b78c729880
3 changed files with 4 additions and 7 deletions

View File

@@ -767,7 +767,7 @@ bool cByteBuffer::ReadUTF16String(AString & a_String, int a_NumChars)
{
return false;
}
RawBEToUTF8((short *)(RawData.data()), a_NumChars, a_String);
RawBEToUTF8((RawData.data()), a_NumChars, a_String);
return true;
}