Skip to content

Commit

Permalink
Merge pull request #73 from fab1ano/main
Browse files Browse the repository at this point in the history
Fix PROC_MAP_REGEX for three digit minor device id
  • Loading branch information
spoutn1k authored Jul 9, 2021
2 parents 92ccbf3 + 28c85b6 commit d638b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ptrace/debugger/memory_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# Offset: '0804d000'
r'([0-9a-f]+) '
# Device (major:minor): 'fe:01 '
r'([0-9a-f]{2,3}):([0-9a-f]{2}) '
r'([0-9a-f]{2,3}):([0-9a-f]{2,3}) '
# Inode: '3334030'
r'([0-9]+)'
# Filename: ' /usr/bin/synergyc'
Expand Down

0 comments on commit d638b5f

Please sign in to comment.