mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-05 05:25:03 +00:00
Fix memcpy with overlapping regions
When moving the unprocessed line to the beginning of the buffer, in rare edge cases where the unprocessed chunk is larger than the processed chunks (which means the lines are very long), the source & target range will overlap. This is undefined as per C standard and triggers ubsan errors. Fix this by using memmove.
This commit is contained in:
parent
38b9f04613
commit
1670fe1c00
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