Skip to content

Commit

Permalink
fix CI issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Xoffio committed Nov 27, 2024
1 parent c19c3a3 commit fb17a15
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frida-gum/src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ use {
frida_gum_sys::{gboolean, gpointer},
};

use crate::alloc::borrow::ToOwned;

#[cfg(not(feature = "std"))]
use alloc::vec::Vec;

Expand Down Expand Up @@ -98,7 +96,7 @@ impl<'a> Process<'a> {
let prot = r_details.protection();
if res.protection == prot {
let m_range = r_details.memory_range();
let file_map = r_details.file_mapping().to_owned();
let file_map = r_details.file_mapping();

res.ranges.push(Range {
base: m_range.base_address(),
Expand Down

0 comments on commit fb17a15

Please sign in to comment.