Commit 50e17ae0 by Bruno Schmitt

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

parent accf4825
......@@ -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 );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment