Skip to content

Commit ca68d3e

Browse files
committed
Fix frida fuzzer with new Launcher builder
1 parent bc18cbc commit ca68d3e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

fuzzers/frida_libpng/src/fuzzer.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use libafl::{
2727
stages::mutational::StdMutationalStage,
2828
state::{HasCorpus, HasMetadata, State},
2929
stats::SimpleStats,
30-
utils::{current_nanos, LauncherBuilder, parse_core_bind_arg, StdRand},
30+
utils::{current_nanos, Launcher, parse_core_bind_arg, StdRand},
3131
Error,
3232
};
3333

@@ -419,7 +419,7 @@ unsafe fn fuzz(
419419
Ok(())
420420
};
421421

422-
LauncherBuilder::default()
422+
Launcher::builder()
423423
.shmem_provider(shmem_provider.clone())
424424
.stats(stats)
425425
.client_init_stats(&mut client_init_stats)
@@ -428,6 +428,5 @@ unsafe fn fuzz(
428428
.stdout_file(stdout_file)
429429
.remote_broker_addr(broker_addr)
430430
.build()
431-
.unwrap()
432431
.launch()
433432
}

0 commit comments

Comments
 (0)