mirror of https://github.com/YosysHQ/abc.git
Fix UB in `&mfs -r` print
This commit is contained in:
parent
64637b8395
commit
860b49dd80
|
|
@ -562,7 +562,7 @@ Gia_Man_t * Gia_ManPerformMfs( Gia_Man_t * p, Sfm_Par_t * pPars )
|
|||
{
|
||||
Sfm_Ntk_t * pNtk;
|
||||
Gia_Man_t * pNew;
|
||||
int nFaninMax, nNodes;
|
||||
int nFaninMax, nNodes = 0;
|
||||
assert( Gia_ManRegNum(p) == 0 );
|
||||
assert( p->vMapping != NULL );
|
||||
if ( p->pManTime != NULL && p->pAigExtra == NULL )
|
||||
|
|
|
|||
Loading…
Reference in New Issue