Fix UB in `&mfs -r` print

This commit is contained in:
Martin Povišer 2025-01-20 12:45:53 +01:00 committed by Miodrag Milanovic
parent 64637b8395
commit 860b49dd80
1 changed files with 1 additions and 1 deletions

View File

@ -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 )