summaryrefslogtreecommitdiff
path: root/python/mediumlevelil.py
diff options
context:
space:
mode:
authorJosh Watson <josh@trailofbits.com>2018-11-06 11:16:00 -0800
committerJordan <jordan@psifertex.com>2018-11-06 15:21:45 -0500
commit158bfeb5a3702ff0befc5221966bcfe67dbfeec9 (patch)
tree86bca4290c84e149fef8f25547aa04108dfde54c /python/mediumlevelil.py
parentfe2c9b2b16a1b4b97009c84b268ddd4c445faaa7 (diff)
Forgot the return False at the end
Diffstat (limited to 'python/mediumlevelil.py')
-rw-r--r--python/mediumlevelil.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index f35b2e6e..e7059918 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -76,6 +76,8 @@ class MediumLevelILOperationAndSize(object):
return other == self.operation
if isinstance(other, MediumLevelILOperationAndSize):
return other.size == self.size and other.operation == self.operation
+ else:
+ return False
class MediumLevelILInstruction(object):