mirror of
https://github.com/thisistherk/fast_obj.git
synced 2025-04-05 13:35:04 +00:00
Don't crash if we fail to read the material library
This commit is contained in:
parent
9ca2dc9796
commit
8abbedd6a1
1 changed files with 1 additions and 1 deletions
|
@ -803,7 +803,7 @@ const char* parse_usemtl(fastObjData* data, const char* ptr)
|
|||
while (idx < array_size(data->mesh->materials))
|
||||
{
|
||||
mtl = &data->mesh->materials[idx];
|
||||
if (string_equal(mtl->name, s, e))
|
||||
if (mtl->name && (mtl->name, s, e))
|
||||
break;
|
||||
|
||||
idx++;
|
||||
|
|
Loading…
Add table
Reference in a new issue