mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-31 12:19:42 +02:00
Core: Fixing None equality test in MapleTree implementation
This commit is contained in:
@@ -362,7 +362,7 @@ class maple_tree(objects.StructType):
|
||||
# None. If however you wanted to parse from a node, but ignore some parts of the tree below it then
|
||||
# this could be populated with the addresses of the nodes you wish to ignore.
|
||||
|
||||
if seen == None:
|
||||
if seen is None:
|
||||
seen = set()
|
||||
|
||||
# protect against unlikely loop
|
||||
|
||||
Reference in New Issue
Block a user