Small fix. Garanteeing pPars is not NULL before checking pPars->fSlacks

This commit is contained in:
Bruno Schmitt 2017-10-24 23:03:32 +02:00
parent accf4825e5
commit 50e17ae0f4
1 changed files with 1 additions and 1 deletions

View File

@ -557,7 +557,7 @@ void Gia_ManPrintStats( Gia_Man_t * p, Gps_Par_t * pPars )
*/
Gia_ManPrintTents( p );
}
if ( pPars->fSlacks )
if ( pPars && pPars->fSlacks )
Gia_ManDfsSlacksPrint( p );
}