Commit e195bf2f by Jerry James

Fix a memset that doesn't zero enough bytes.

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