diff options
| author | Ryan Stortz <withzombies@users.noreply.github.com> | 2019-03-21 11:24:33 -0700 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2019-03-23 13:07:52 -0400 |
| commit | a0d737d0cbe792d3ca4002e6b12317f98c8e590f (patch) | |
| tree | 36e513b0c93457cf3de61fffb75043d5a999c239 /python/lowlevelil.py | |
| parent | 469f7eba4afe3086e98486b6e5f2bebbf61de525 (diff) | |
Update python/lowlevelil.py
Co-Authored-By: joshwatson <josh@joshwatson.com>
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
