Fix regex in elfheader

This commit is contained in:
Long Le 2017-05-23 08:36:44 +07:00 committed by GitHub
parent 847a926b04
commit bbf58727b4
1 changed files with 1 additions and 1 deletions

View File

@ -2260,7 +2260,7 @@ class PEDA(object):
if not out:
return {}
p = re.compile("\s*(0x[^-]*)->(0x[^ ]*) at (.*):\s*([^ ]*)\s*(.*)")
p = re.compile("\s*(0x[^-]*)->(0x[^ ]*) at (0x[^:]*):\s*([^ ]*)\s*(.*)")
matches = p.findall(out)
for (start, end, offset, hname, attr) in matches: