neuzz icon indicating copy to clipboard operation
neuzz copied to clipboard

Implementation Error in neuzz.c line 1726

Open BraveCattle opened this issue 1 year ago • 0 comments

In line 1726 in function dry_run, the code is

                    else if(fault = FAULT_TMOUT){

which I believe it should be

                    else if(fault == FAULT_TMOUT){

Still it seems that it did not affect the overall execution. Guess it might be due to that no generated input leads to timeout error?

BraveCattle avatar Feb 26 '24 15:02 BraveCattle