Skip to content

Commit

Permalink
Use lifetime parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
s1341 committed Jan 4, 2024
1 parent 75411cf commit 0e9cabb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frida-gum/src/range_details.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ impl<'a> FileMapping<'a> {
}
}

struct SaveRangeDetailsByAddressContext {
struct SaveRangeDetailsByAddressContext<'a> {
address: u64,
details: Option<RangeDetails>,
details: Option<RangeDetails<'a>>,
}

unsafe extern "C" fn save_range_details_by_address(
Expand Down

0 comments on commit 0e9cabb

Please sign in to comment.