Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
tokatoka committed Oct 1, 2024
1 parent 1e86080 commit 487f9c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions libafl_frida/src/asan/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -653,6 +653,7 @@ impl<EM, OT, S> Feedback<EM, S::Input, OT, S> for AsanErrorsFeedback<S>
where
S: State + Debug,
S::Input: HasTargetBytes,
OT: MatchNameRef,
{
#[allow(clippy::wrong_self_convention)]
fn is_interesting(
Expand Down
3 changes: 2 additions & 1 deletion libafl_libfuzzer/runtime/src/feedbacks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use libafl::{
state::State,
Error, HasMetadata,
};
use libafl_bolts::{impl_serdeany, Named};
use libafl_bolts::{impl_serdeany, tuples::MatchNameRef, Named};
use libafl_targets::OomFeedback;
use serde::{Deserialize, Serialize};

Expand Down Expand Up @@ -124,6 +124,7 @@ impl<S> StateInitializer<S> for LibfuzzerCrashCauseFeedback {}
impl<EM, OT, S> Feedback<EM, BytesInput, OT, S> for LibfuzzerCrashCauseFeedback
where
S: State<Input = BytesInput>,
OT: MatchNameRef,
{
fn is_interesting(
&mut self,
Expand Down

0 comments on commit 487f9c5

Please sign in to comment.