Skip to content

Commit

Permalink
core: bug fix
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <david@adalogics.com>
  • Loading branch information
DavidKorczynski committed Jan 27, 2025
1 parent fbf78f2 commit 961cbdb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/fuzz_introspector/frontends/frontend_cpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,10 @@ def load_treesitter_trees(source_files, is_log=True) -> CppProject:
if not os.path.isfile(code_file):
continue

source_cls = CppSourceCodeFile('c++', code_file)
try:
source_cls = CppSourceCodeFile('c++', code_file)
except RecursionError:
continue
results.append(source_cls)

if is_log:
Expand Down

0 comments on commit 961cbdb

Please sign in to comment.