From a0d737d0cbe792d3ca4002e6b12317f98c8e590f Mon Sep 17 00:00:00 2001 From: Ryan Stortz Date: Thu, 21 Mar 2019 11:24:33 -0700 Subject: Update python/lowlevelil.py Co-Authored-By: joshwatson --- python/lowlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 9f23f45b..e759ef09 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -753,7 +753,7 @@ class LowLevelILFunction(object): self.handle = core.BNCreateLowLevelILFunction(arch.handle, func_handle) def __hash__(self): - return hash('LLIL') + hash(self.source_function) + return hash(('LLIL', self.source_function)) def __del__(self): if self.handle is not None: -- cgit v1.3.1