mirror of
https://github.com/stenzek/duckstation.git
synced 2026-02-10 00:14:32 +00:00
SmallString: Fix size bug in assign(SmallStringBase&&)
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user