diff --git a/src/fuzz_introspector/analysis.py b/src/fuzz_introspector/analysis.py index b15ab06f8..4af792c08 100644 --- a/src/fuzz_introspector/analysis.py +++ b/src/fuzz_introspector/analysis.py @@ -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())