Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #8 from stevemk14ebr/master
Browse files Browse the repository at this point in the history
Fix find_all_calls_to (may be NoneType)
  • Loading branch information
carlosgprado authored Mar 20, 2020
2 parents 88fe71a + 9f9f9f2 commit 68a4186
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions FIDL/decompiler_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2310,6 +2310,9 @@ def find_all_calls_to(f_name):

# Get a set of unique *function* callers
f = get_func(ref.frm)
if f is None:
continue

f_ea = f.start_ea
callers.add(f_ea)

Expand Down

0 comments on commit 68a4186

Please sign in to comment.