diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-09-16 13:39:19 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-16 13:56:15 -0400 |
| commit | 5714768f08e5136ceb36449f9165d2bb88539ea7 (patch) | |
| tree | 1b46b2ffb54f78a36a45727d5dc497992043d655 /python/binaryview.py | |
| parent | bcb6c1e89995248f46bad12a08a329e505072cdb (diff) | |
Fixes #2643 get_symbols_by_name bug
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 f9d4d3ff..0d398e7a 100644 --- a/python/binaryview.py +++ b/python/binaryview.py @@ -4034,7 +4034,7 @@ class BinaryView: [<FunctionSymbol: "public: static enum Foobar::foo __cdecl Foobar::testf(enum Foobar::foo)" @ 0x10001100>] >>> """ - if ordered_filter is []: + if ordered_filter == []: ordered_filter = [SymbolType.FunctionSymbol, SymbolType.ImportedFunctionSymbol, SymbolType.LibraryFunctionSymbol, |
