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?
In line 1726 in function dry_run, the code is
which I believe it should be
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?