Merge pull request #9 from zeux/memmove

Fix memcpy with overlapping regions
This commit is contained in:
Richard Knight 2019-07-27 08:43:54 +01:00 committed by GitHub
commit 256f09e8d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}