Commit aaacf573 by Baruch Sterin

pyabc: fix _cex_put to not call Abc_CexDup() twice

parent 43d54351
...@@ -254,7 +254,7 @@ void _cex_put(Abc_Cex_t* pCex) ...@@ -254,7 +254,7 @@ void _cex_put(Abc_Cex_t* pCex)
pCex = Abc_CexDup(pCex, -1); pCex = Abc_CexDup(pCex, -1);
} }
Abc_FrameSetCex( Abc_CexDup(pCex, -1) ); Abc_FrameSetCex( pCex );
} }
void _cex_free(Abc_Cex_t* pCex) void _cex_free(Abc_Cex_t* pCex)
......
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