Skip to content

Commit 1d15048

Browse files
committed
hopeful finally change for libfuzzer driver
1 parent adcffce commit 1d15048

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/aflpp_driver/aflpp_driver.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,8 +267,8 @@ int main(int argc, char **argv) {
267267

268268
// Call LLVMFuzzerTestOneInput here so that coverage caused by initialization
269269
// on the first execution of LLVMFuzzerTestOneInput is ignored.
270-
//uint8_t dummy_input[1] = {0};
271-
//LLVMFuzzerTestOneInput(dummy_input, 1);
270+
uint8_t dummy_input[1] = {0};
271+
LLVMFuzzerTestOneInput(dummy_input, 1);
272272

273273
int num_runs = 0;
274274
while (__afl_persistent_loop(N)) {

0 commit comments

Comments
 (0)