diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-09-23 10:13:30 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-23 10:25:41 -0400 |
| commit | b2f9382f0bf3719aa46077454e623ac4bb542020 (patch) | |
| tree | 5d7d430ea88648f709fa62747f0dc08f35bdbbb6 /python/binaryview.py | |
| parent | b4ddd2c1f18c88d225fbcf984661d85002211549 (diff) | |
Fix BinaryView.range_contains_relocation
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 ef559d8b..aaf9e413 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -1125,7 +1125,7 @@ class Section: def range_contains_relocation(self, addr:int, size:int) -> bool: """Checks if the specified range overlaps with a relocation""" - return core.BNSectionRangeContainsRelocation(self.handle, addr, size) + return core.BNSegmentRangeContainsRelocation(self.handle, addr, size) class TagType: |
