mirror of https://github.com/YosysHQ/abc.git
Small fix. Garanteeing pPars is not NULL before checking pPars->fSlacks
This commit is contained in:
parent
accf4825e5
commit
50e17ae0f4
|
|
@ -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 );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue