SmallString: Fix size bug in assign(SmallStringBase&&)

This commit is contained in:
Stenzek
2025-06-14 13:12:02 +10:00
parent a31d67921b
commit 9ffded0e73

View File

@@ -460,7 +460,7 @@ void SmallStringBase::assign(SmallStringBase&& move)
}
else
{
assign(move.m_buffer, move.m_buffer_size);
assign(move.m_buffer, move.m_length);
}
}