From c893956bdf6a016307ef90400f29adbe060a071a Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Tue, 29 Sep 2020 14:37:44 -0400 Subject: Fix low_level_il access when MLIL is None. --- python/highlevelil.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'python') diff --git a/python/highlevelil.py b/python/highlevelil.py index 56619f05..d85905b1 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -532,6 +532,8 @@ class HighLevelILInstruction(object): @property def low_level_il(self): """Low level IL form of this expression""" + if self.mlil is None: + return None return self.mlil.llil @property -- cgit v1.3.1