Skip to content

Commit

Permalink
core: debug_info: cast _Bool to bool
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <david@adalogics.com>
  • Loading branch information
DavidKorczynski committed May 11, 2024
1 parent dfc7367 commit 205a971
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/fuzz_introspector/analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,12 @@ def load_debug_report(self):
else:
tmp_debug_functions[func['file_location']] = func

# Cleanup some debug values that we know have weird names and
# not the names fro the source.
for debug_type in self.debug_all_types:
if debug_type['name'] == '_Bool':
debug_type['name'] = 'bool'

self.debug_all_functions = no_path_debug_funcs + list(
tmp_debug_functions.values())

Expand Down

0 comments on commit 205a971

Please sign in to comment.