diff options
| author | Brian Potchik <brian@vector35.com> | 2024-10-24 12:06:09 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2024-10-24 12:06:09 -0400 |
| commit | 6d7f4ac49f5db820c5c468b69efc953cab87307b (patch) | |
| tree | 40339728c6b44eedebe92dd08a0ea797134ae69f /python/binaryview.py | |
| parent | 45955fccf9d0a5e512b3a4da6ac91bf0057ae58c (diff) | |
Initial implementation of the module-level analysis workflow.
Diffstat (limited to 'python/binaryview.py')
| -rw-r--r-- | python/binaryview.py | 2 |
1 files changed, 1 insertions, 1 deletions
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']: |
