From 6d7f4ac49f5db820c5c468b69efc953cab87307b Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Thu, 24 Oct 2024 12:06:09 -0400 Subject: Initial implementation of the module-level analysis workflow. --- python/binaryview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/binaryview.py') diff --git a/python/binaryview.py b/python/binaryview.py index 3d5187d6..8c056db0 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -8945,7 +8945,7 @@ to a the type "tagRECT" found in the typelibrary "winX64common" handle = core.BNGetWorkflowForBinaryView(self.handle) if handle is None: return None - return _workflow.Workflow(handle=handle) + return _workflow.Workflow(handle=handle, object_handle=self.handle) def rebase(self, address: int, force: Optional[bool] = False, progress_func: Optional[ProgressFuncType] = None) -> Optional['BinaryView']: -- cgit v1.3.1