diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2020-06-06 15:43:37 -0400 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2020-06-06 15:43:37 -0400 |
| commit | e8b37b23c67fc05e3bf91f85c8dab16828fe95cc (patch) | |
| tree | 365ebdd0ff65d69db2dcca4759b9da6d9207e0ca /python/types.py | |
| parent | 6543b216981a407f659d1922976f8425069073c1 (diff) | |
fix handle reference in type with_confidence call, resolves #1731
Diffstat (limited to 'python/types.py')
| -rw-r--r-- | python/types.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/types.py b/python/types.py index b0faf9ed..046a9d58 100644 --- a/python/types.py +++ b/python/types.py @@ -875,7 +875,7 @@ class Type(object): return core.BNGetAutoDemangledTypeIdSource() def with_confidence(self, confidence): - return Type(handle = core.BNNewTypeReference(self._handle), platform = self._platform, confidence = confidence) + return Type(handle = core.BNNewTypeReference(self.handle), platform = self._platform, confidence = confidence) @property def confidence(self): |
