Skip to content

Commit

Permalink
split inode_objfile at most once to fix Gallopsled#695 (Gallopsled#696)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpark1217 authored and stnevans committed Dec 15, 2019
1 parent e650f92 commit b2f7f90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pwndbg/vmmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def proc_pid_maps():
for line in data.splitlines():
maps, perm, offset, dev, inode_objfile = line.split(None, 4)

try: inode, objfile = inode_objfile.split()
try: inode, objfile = inode_objfile.split(None, 1)
except: objfile = ''

start, stop = maps.split('-')
Expand Down

0 comments on commit b2f7f90

Please sign in to comment.