mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 21:15:04 +00:00
Merge pull request #9 from zeux/memmove
Fix memcpy with overlapping regions
This commit is contained in:
commit
256f09e8d5
1 changed files with 1 additions and 1 deletions
|
@ -1367,7 +1367,7 @@ fastObjMesh* fast_obj_read(const char* path)
|
|||
|
||||
/* Copy overflow for next buffer */
|
||||
bytes = (unsigned int)(end - last);
|
||||
memcpy(buffer, last, bytes);
|
||||
memmove(buffer, last, bytes);
|
||||
start = buffer + bytes;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue