mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-23 03:32:32 +00:00
This needs to be a memmove
as the areas may overlap.
This commit is contained in:
parent
7fd02e7f4c
commit
ebde955356
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user