diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/mediumlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index e165eaa3..4559d7b6 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -634,7 +634,7 @@ class MediumLevelILFunction(object): self.handle = core.BNCreateMediumLevelILFunction(arch.handle, func_handle) def __hash__(self): - return hash('MLIL') + hash(self.source_function) + return hash(('MLIL', self.source_function)) def __del__(self): if self.handle is not None: |
