mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-04 13:05:02 +00:00
Fix fuzzer test when vertex index is garbage
This commit is contained in:
parent
c8707104b8
commit
724e09ff1e
1 changed files with 3 additions and 1 deletions
|
@ -760,8 +760,10 @@ const char* parse_face(fastObjData* data, const char* ptr)
|
|||
|
||||
if (v < 0)
|
||||
vn.p = (array_size(data->mesh->positions) / 3) - (fastObjUInt)(-v);
|
||||
else
|
||||
else if (v > 0)
|
||||
vn.p = (fastObjUInt)(v);
|
||||
else
|
||||
return ptr; /* Skip lines with no valid vertex index */
|
||||
|
||||
if (t < 0)
|
||||
vn.t = (array_size(data->mesh->texcoords) / 2) - (fastObjUInt)(-t);
|
||||
|
|
Loading…
Add table
Reference in a new issue