diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2025-05-20 17:08:55 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2025-05-20 17:08:55 -0400 |
| commit | e0dbaf8b50e80e2b0a5edcdf088931953b43bc66 (patch) | |
| tree | 6229fdfced588d75edb23619cd0d4b32922e348a /python | |
| parent | d4115b628a90ed70b65c9b58a9dc10cf53d58e2d (diff) | |
relax caller_sites filter
Diffstat (limited to 'python')
| -rw-r--r-- | python/function.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py index d2c677a7..2a3e2228 100644 --- a/python/function.py +++ b/python/function.py @@ -3073,7 +3073,7 @@ class Function: :rtype: list(ReferenceSource) """ for site in self.view.get_code_refs(self.start): - if isinstance(site.llil, lowlevelil.LowLevelILCall): + if isinstance(site.llil, Localcall): yield site @property |
