- Bugfix 2824877: Avoid handling of negative ids in face definitions.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@462 67173fc5-114c-0410-ac8e-9d2fd5bffc1fpull/1/head
parent
eda47a6f0b
commit
af725fd545
|
@ -302,10 +302,10 @@ void ObjFileParser::getFace()
|
||||||
//OBJ USES 1 Base ARRAYS!!!!
|
//OBJ USES 1 Base ARRAYS!!!!
|
||||||
const int iVal = atoi( pPtr );
|
const int iVal = atoi( pPtr );
|
||||||
int tmp = iVal;
|
int tmp = iVal;
|
||||||
while ((tmp = tmp / 10)!=0)
|
while ( ( tmp = tmp / 10 )!=0 )
|
||||||
++iStep;
|
++iStep;
|
||||||
|
|
||||||
if ( 0 != iVal )
|
if ( iVal > 0 )
|
||||||
{
|
{
|
||||||
// Store parsed index
|
// Store parsed index
|
||||||
if ( 0 == iPos )
|
if ( 0 == iPos )
|
||||||
|
|
Loading…
Reference in New Issue