From b4ccb82ea76b98457d9dc59424632ca412511ed4 Mon Sep 17 00:00:00 2001 From: Josh Ferrell Date: Wed, 15 Apr 2026 11:21:40 -0400 Subject: [Python API] Replace bare "except:" with "except Exception:" to fix signal propagation --- python/functionrecognizer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/functionrecognizer.py') diff --git a/python/functionrecognizer.py b/python/functionrecognizer.py index edebb10e..80f1a11e 100644 --- a/python/functionrecognizer.py +++ b/python/functionrecognizer.py @@ -59,7 +59,7 @@ class FunctionRecognizer: func = function.Function(view, handle=core.BNNewFunctionReference(func)) il = lowlevelil.LowLevelILFunction(func.arch, handle=core.BNNewLowLevelILFunctionReference(il)) return self.recognize_low_level_il(view, func, il) - except: + except Exception: log_error_for_exception("Unhandled Python exception in FunctionRecognizer._recognize_low_level_il") return False @@ -73,7 +73,7 @@ class FunctionRecognizer: func = function.Function(view, handle=core.BNNewFunctionReference(func)) il = mediumlevelil.MediumLevelILFunction(func.arch, handle=core.BNNewMediumLevelILFunctionReference(il)) return self.recognize_medium_level_il(view, func, il) - except: + except Exception: log_error_for_exception("Unhandled Python exception in FunctionRecognizer._recognize_mediumlevel_il") return False -- cgit v1.3.1