Commit a5d07fa4 by Alan Mishchenko

Bug fix in LMS code.

parent 9206e6ff
......@@ -658,7 +658,7 @@ static void Abc_NtkRecResizeHash2(Abc_ManRec_t2* p)
printf("Hash table resize from %d to %d.\n", p->nBins, nBinsNew);
// allocate a new array
pBinsNew = ABC_ALLOC( int, nBinsNew );
memset( pBinsNew, -1, sizeof(int *) * nBinsNew );
memset( pBinsNew, -1, sizeof(int) * nBinsNew );
// rehash the entries from the old table
Counter = 0;
for ( i = 0; i < p->nBins; i++ )
......
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