neuzz
neuzz copied to clipboard
Implementation Error in neuzz.c line 1726
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?