We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c1371f commit 577fb5fCopy full SHA for 577fb5f
libafl_frida/src/executor.rs
@@ -41,7 +41,7 @@ where
41
// thread_id for the Stalker
42
thread_id: Option<u32>,
43
/// Frida's dynamic rewriting engine
44
- stalker: Stalker<'a>,
+ stalker: Stalker,
45
/// User provided callback for instrumentation
46
helper: &'c mut FridaInstrumentationHelper<'b, RT>,
47
followed: bool,
libafl_frida/src/lib.rs
@@ -575,7 +575,7 @@ mod tests {
575
"Skipping test, {test_harness} not found"
576
);
577
578
- GUM.set(unsafe { Gum::obtain() })
+ GUM.set(Gum::obtain())
579
.unwrap_or_else(|_| panic!("Failed to initialize Gum"));
580
let simulated_args = vec![
581
"libafl_frida_test",
0 commit comments