mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-29 23:00:10 +00:00
SmallString: Fix size bug in assign(SmallStringBase&&)
This commit is contained in:
parent
a31d67921b
commit
9ffded0e73
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user