Skip to content

Commit a6a2c4c

Browse files
committed
stop it
1 parent 685cdb2 commit a6a2c4c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libafl/src/executors/inprocess.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ where
256256
H: FnMut(&<S as UsesInput>::Input) -> ExitKind + ?Sized,
257257
HB: BorrowMut<H>,
258258
OT: ObserversTuple<S>,
259-
S: HasExecutions + HasSolutions + HasCorpus,
259+
S: State + HasExecutions + HasSolutions + HasCorpus,
260260
{
261261
/// the timeout handler
262262
#[inline]
@@ -381,7 +381,7 @@ impl InProcessHandlers {
381381
E: Executor<EM, Z> + HasObservers + HasInProcessHandlers,
382382
EM: EventFirer<State = E::State> + EventRestarter<State = E::State>,
383383
OF: Feedback<E::State>,
384-
E::State: HasExecutions + HasSolutions + HasCorpus,
384+
E::State: State + HasExecutions + HasSolutions + HasCorpus,
385385
Z: HasObjective<Objective = OF, State = E::State>,
386386
{
387387
unsafe {
@@ -1159,7 +1159,7 @@ pub mod windows_exception_handler {
11591159
E: HasObservers + HasInProcessHandlers,
11601160
EM: EventFirer<State = E::State> + EventRestarter<State = E::State>,
11611161
OF: Feedback<E::State>,
1162-
E::State: HasExecutions + HasSolutions + HasCorpus,
1162+
E::State: State + HasExecutions + HasSolutions + HasCorpus,
11631163
Z: HasObjective<Objective = OF, State = E::State>,
11641164
{
11651165
let data: &mut InProcessExecutorHandlerData =

libafl_frida/src/executor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ impl<'a, 'b, 'c, H, OT, RT, S> HasInProcessHandlers
231231
for FridaInProcessExecutor<'a, 'b, 'c, H, OT, RT, S>
232232
where
233233
H: FnMut(&S::Input) -> ExitKind,
234-
S: UsesInput + HasSolutions + HasCorpus + HasExecutions,
234+
S: State + HasSolutions + HasCorpus + HasExecutions,
235235
S::Input: HasTargetBytes,
236236
OT: ObserversTuple<S>,
237237
RT: FridaRuntimeTuple,

0 commit comments

Comments
 (0)