diff --git a/fast_obj.h b/fast_obj.h index 8b12086..bd09b7d 100644 --- a/fast_obj.h +++ b/fast_obj.h @@ -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; }