use_info_auxv() : change regex (#894)

pull/897/head
Bintang Fikriguska 5 years ago committed by GitHub
parent 96df189e97
commit 00c97409c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -113,7 +113,7 @@ def use_info_auxv():
auxv = AUXV() auxv = AUXV()
for line in lines: for line in lines:
match = re.match('([0-9]+) .*? (0x[0-9a-f]+|[0-9]+)', line) match = re.match('([0-9]+) .*? (0x[0-9a-f]+|[0-9]+$)', line)
if not match: if not match:
print("Warning: Skipping auxv entry '{}'".format(line)) print("Warning: Skipping auxv entry '{}'".format(line))
continue continue

Loading…
Cancel
Save