Skip to content

Commit

Permalink
linux: Handle compat ranges during injection
Browse files Browse the repository at this point in the history
So our spurious range detection doesn't make an incomplete candidate,
and we might end up picking the wrong one.
  • Loading branch information
oleavr committed Mar 3, 2025
1 parent 60a6770 commit 9594e1a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/linux/frida-helper-backend.vala
Original file line number Diff line number Diff line change
Expand Up @@ -3351,6 +3351,8 @@ namespace Frida {
#endif
while (iter.next ()) {
string current_path = iter.path;
if (current_path == "[page size compat]")
continue;
if (current_path != path) {
latest_candidate = null;
continue;
Expand Down

0 comments on commit 9594e1a

Please sign in to comment.