Don't crash if we fail to read the material library

This commit is contained in:
unknown 2019-05-22 10:50:31 +01:00
parent 9ca2dc9796
commit 8abbedd6a1

View file

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