From 9a0fd047a92e41507d60575ffecba86637101b0a Mon Sep 17 00:00:00 2001 From: Ryan Stortz Date: Thu, 21 Mar 2019 11:24:42 -0700 Subject: Update python/mediumlevelil.py Co-Authored-By: joshwatson --- python/mediumlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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: -- cgit v1.3.1