Commit b44a8f92 by Raphael Isemann

Fix some memory leaks

parent ee228339
...@@ -1778,6 +1778,7 @@ void Tas_ManSolveMiterNc2( Gia_Man_t * pAig, int nConfs, Gia_Man_t * pAigOld, Ve ...@@ -1778,6 +1778,7 @@ void Tas_ManSolveMiterNc2( Gia_Man_t * pAig, int nConfs, Gia_Man_t * pAigOld, Ve
Tas_ManSatPrintStats( p ); Tas_ManSatPrintStats( p );
Tas_ManStop( p ); Tas_ManStop( p );
Vec_PtrFree( vPres ); Vec_PtrFree( vPres );
Vec_StrFree( vStatus );
} }
......
...@@ -112,6 +112,7 @@ void Abc_NtkCheckAbsorb( Abc_Ntk_t * pNtk, int nLutSize ) ...@@ -112,6 +112,7 @@ void Abc_NtkCheckAbsorb( Abc_Ntk_t * pNtk, int nLutSize )
Counter, 100.0 * Counter / Abc_NtkNodeNum(pNtk), Counter, 100.0 * Counter / Abc_NtkNodeNum(pNtk),
Counter2, 100.0 * Counter2 / Abc_NtkNodeNum(pNtk) ); Counter2, 100.0 * Counter2 / Abc_NtkNodeNum(pNtk) );
Abc_PrintTime( 1, "Time", Abc_Clock() - clk ); Abc_PrintTime( 1, "Time", Abc_Clock() - clk );
Vec_IntFree( vCounts );
} }
/**Function************************************************************* /**Function*************************************************************
......
...@@ -2483,6 +2483,8 @@ saucy_search( ...@@ -2483,6 +2483,8 @@ saucy_search(
/* Keep running till we're out of automorphisms */ /* Keep running till we're out of automorphisms */
while (do_search(s)); while (do_search(s));
ABC_FREE(g);
} }
void void
......
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