From 64797d7c23824a991fe6285a6a3bb0dcee2dd495 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Wed, 27 Oct 2021 07:33:08 -0400 Subject: Add IL class heirarchy graph report --- python/binaryview.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python/binaryview.py') diff --git a/python/binaryview.py b/python/binaryview.py index c1bfde83..f049ae28 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -4443,6 +4443,8 @@ class BinaryView: syms = core.BNGetSymbols(self.handle, count, _namespace) assert syms is not None, "core.BNGetSymbols returned None" else: + if length is None: + length = 1 syms = core.BNGetSymbolsInRange(self.handle, start, length, count, namespace) assert syms is not None, "core.BNGetSymbolsInRange returned None" result = [] -- cgit v1.3.1