Skip to content

Commit

Permalink
missing part of 50a2abd
Browse files Browse the repository at this point in the history
  • Loading branch information
blattm committed Oct 19, 2023
1 parent 4c583ff commit 495e268
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion decompiler/frontend/binaryninja/lifter.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from decompiler.frontend.lifter import ObserverLifter
from decompiler.structures.pseudo import DataflowObject, Tag, UnknownExpression, UnknownType

from ...structures.pseudo.complextypes import ComplexTypeMap
from ...structures.pseudo.complextypes import ComplexTypeMap, UniqueNameProvider
from .handlers import HANDLERS


Expand All @@ -17,6 +17,7 @@ def __init__(self, no_bit_masks: bool = True, bv: BinaryView = None):
self.no_bit_masks = no_bit_masks
self.bv: BinaryView = bv
self.complex_types: ComplexTypeMap = ComplexTypeMap()
self.unique_name_provider: UniqueNameProvider = UniqueNameProvider()
for handler in HANDLERS:
handler(self).register()

Expand Down

0 comments on commit 495e268

Please sign in to comment.