Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
benfred committed Nov 1, 2024
1 parent 5dfcfa1 commit e9def6e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/python_process_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,12 @@ where
// to further check
let interp: I = match process.copy_struct(addr) {
Ok(interp) => interp,
Err(_) => continue,
Err(e) => {
if show_progress {
info!(" -> failed to copy interp {:#?}", e);
}
continue;
}
};
if show_progress {
info!(" -> copied interp");
Expand Down

0 comments on commit e9def6e

Please sign in to comment.