Skip to content

Commit

Permalink
[Frontend-jvm] Fix bug in incomplete entrypoint confusion (#2001)
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Chan <arthur.chan@adalogics.com>
  • Loading branch information
arthurscchan authored Jan 20, 2025
1 parent d87b414 commit 9221933
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/fuzz_introspector/frontends/frontend_jvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,9 @@ def extract_calltree(self,
if not visited_functions:
visited_functions = set()

if function and '].' not in function:
function = None

if not source_code and function:
source_code = self.find_source_with_method(function)

Expand Down

0 comments on commit 9221933

Please sign in to comment.