Return exception when obj file contains invalid face indice

pull/1512/head
Alexandre Avenel 2017-10-21 20:36:43 +02:00
parent aa733d6f77
commit cc8374dd80
1 changed files with 4 additions and 0 deletions

View File

@ -475,7 +475,11 @@ void ObjFileParser::getFace( aiPrimitiveType type ) {
} else { } else {
reportErrorTokenInFace(); reportErrorTokenInFace();
} }
} else {
//On error, std::atoi will return 0 which is not a valid value
throw DeadlyImportError("OBJ: Invalid face indice");
} }
} }
m_DataIt += iStep; m_DataIt += iStep;
} }