Skip to content

Commit

Permalink
Merge pull request #88 from icecr4ck/fix_regex
Browse files Browse the repository at this point in the history
Fix regex when function returns a pointer
  • Loading branch information
commial authored Mar 1, 2019
2 parents 6762a80 + e1dd5f3 commit 9a17848
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/ida/find.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ def architecture(self):
}

# int __cdecl(int, int) -> __cdecl
gtype_matcher = re.compile(".+ ([^\(]+)\([^\)]*\)")
gtype_matcher = re.compile(".+ \*?([^\(]+)\([^\)]*\)")

@property
def abi(self):
Expand Down

0 comments on commit 9a17848

Please sign in to comment.