Fix a memset that doesn't zero enough bytes.

This commit is contained in:
Jerry James 2019-05-08 19:17:49 -06:00
parent 7ccb25bfe9
commit e195bf2f7e
1 changed files with 1 additions and 1 deletions

View File

@ -8025,7 +8025,7 @@ int Abc_CommandExact( Abc_Frame_t * pAbc, int argc, char ** argv )
if ( argc == globalUtilOptind )
goto usage;
memset( pTruth, 0, 64 );
memset( pTruth, 0, 64 * sizeof(word) );
while ( globalUtilOptind < argc )
{
if ( nFunc == 16 )