mirror of
https://github.com/TomHarte/CLK.git
synced 2025-07-24 22:24:23 +00:00
This needs to be a memmove
as the areas may overlap.
This commit is contained in:
@@ -130,7 +130,7 @@ void ArrayBuilder::Buffer::flush()
|
||||
{
|
||||
if(submitted_data)
|
||||
{
|
||||
memcpy(data.data(), &data[submitted_data], allocated_data - submitted_data);
|
||||
memmove(data.data(), &data[submitted_data], allocated_data - submitted_data);
|
||||
allocated_data -= submitted_data;
|
||||
flushed_data -= submitted_data;
|
||||
submitted_data = 0;
|
||||
|
Reference in New Issue
Block a user