File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
crates/libafl_frida/src/asan Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -7,21 +7,21 @@ use std::{
77} ;
88
99use backtrace:: Backtrace ;
10- use color_backtrace:: { BacktracePrinter , Verbosity , default_output_stream } ;
10+ use color_backtrace:: { default_output_stream , BacktracePrinter , Verbosity } ;
1111#[ cfg( target_arch = "aarch64" ) ]
1212use frida_gum:: interceptor:: Interceptor ;
1313use frida_gum:: { Gum , Process } ;
1414use libafl:: {
15- Error , HasMetadata ,
1615 corpus:: Testcase ,
1716 executors:: ExitKind ,
1817 feedbacks:: { Feedback , StateInitializer } ,
1918 observers:: Observer ,
19+ Error , HasMetadata ,
2020} ;
2121use libafl_bolts:: {
22- Named , SerdeAny ,
2322 ownedref:: OwnedPtr ,
2423 tuples:: { Handle , Handled , MatchNameRef } ,
24+ Named , SerdeAny ,
2525} ;
2626use mmap_rs:: MmapOptions ;
2727use serde:: { Deserialize , Serialize } ;
@@ -368,7 +368,6 @@ impl AsanErrors {
368368 writeln ! ( output, " at 0x{_pc:x}" ) . unwrap ( ) ;
369369 }
370370
371- #[ expect( clippy:: non_ascii_literal) ]
372371 writeln ! ( output, "{:━^100}" , " REGISTERS " ) . unwrap ( ) ;
373372 for reg in 0 ..29 {
374373 let val = cpu_context. reg ( reg) ;
You can’t perform that action at this time.
0 commit comments