This commit is contained in:
Robert Beckebans 2022-10-19 18:26:14 +02:00
parent 0119d754b9
commit 73b70ce4ba

View file

@ -692,8 +692,8 @@ ID_INLINE void idStr::operator=( idStr&& text ) noexcept
len = text.len;
allocedAndFlag = text.allocedAndFlag;
memcpy( baseBuffer, text.baseBuffer, sizeof( baseBuffer ) );
if ( text.data == text.baseBuffer )
if( text.data == text.baseBuffer )
{
data = baseBuffer;
}