Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Fix main.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Urhengulas authored Jul 18, 2023
1 parent 14ef801 commit 5b423b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ fn run_target_program(elf_path: &Path, chip_name: &str, opts: &cli::Opts) -> any
// run program and print logs until there is an exception
attack_the_program(core, elf)?;
let current_dir = env::current_dir()?;
let halted_due_to_signal = print_logs(core, current_dir, elf, &target_info.memory_map, opts)?; // blocks until exception
let halted_due_to_signal = print_logs(core, &current_dir, elf, &target_info.memory_map, opts)?; // blocks until exception
print_separator()?;

// analyze stack canary
Expand Down

0 comments on commit 5b423b1

Please sign in to comment.