fix mem-lead: face will be not released in case of an error.
parent
c9ada44ab5
commit
a33e115fd1
|
@ -477,6 +477,7 @@ void ObjFileParser::getFace( aiPrimitiveType type ) {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
//On error, std::atoi will return 0 which is not a valid value
|
//On error, std::atoi will return 0 which is not a valid value
|
||||||
|
delete face;
|
||||||
delete m_pModel;
|
delete m_pModel;
|
||||||
m_pModel = nullptr;
|
m_pModel = nullptr;
|
||||||
throw DeadlyImportError("OBJ: Invalid face indice");
|
throw DeadlyImportError("OBJ: Invalid face indice");
|
||||||
|
|
Loading…
Reference in New Issue