diff options
| author | Peter LaFosse <peter@vector35.com> | 2017-01-10 19:17:45 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2017-01-10 19:17:45 -0500 |
| commit | bac8ff2315599fac8b49fc1c62ce63ffa946bb0d (patch) | |
| tree | 4b0da3ac854e740e9407299aab7819470fca1519 /python | |
| parent | c679a8a36fba81fccedb739036215f6657453a89 (diff) | |
Fix bv.symbols
Diffstat (limited to 'python')
| -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 af7faa32..aaa2cfe0 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -754,7 +754,7 @@ class BinaryView(object): syms = core.BNGetSymbols(self.handle, count) result = {} for i in xrange(0, count.value): - sym = function.Symbol(None, None, None, handle=core.BNNewSymbolReference(syms[i])) + sym = types.Symbol(None, None, None, handle=core.BNNewSymbolReference(syms[i])) result[sym.raw_name] = sym core.BNFreeSymbolList(syms, count.value) return result |
