Commit c5f74867 by Alan Mishchenko

Fixing a memory leak.

parent d8c47d56
...@@ -2085,8 +2085,8 @@ Gia_Man_t * Wlc_NtkBitBlast( Wlc_Ntk_t * p, Wlc_BstPar_t * pParIn ) ...@@ -2085,8 +2085,8 @@ Gia_Man_t * Wlc_NtkBitBlast( Wlc_Ntk_t * p, Wlc_BstPar_t * pParIn )
} }
if ( pPar->vBoxIds ) if ( pPar->vBoxIds )
{ {
Vec_PtrFreeP( &pNew->vNamesIn ); Vec_PtrFreeFree( pNew->vNamesIn ); pNew->vNamesIn = NULL;
Vec_PtrFreeP( &pNew->vNamesOut ); Vec_PtrFreeFree( pNew->vNamesOut ); pNew->vNamesOut = NULL;
} }
return pNew; return pNew;
} }
......
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