diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/highlevelil.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 |
