diff options
| author | Ryan Stortz <withzombies@users.noreply.github.com> | 2019-03-21 11:24:42 -0700 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2019-03-23 13:07:52 -0400 |
| commit | 9a0fd047a92e41507d60575ffecba86637101b0a (patch) | |
| tree | ef3e15ab227777528aa2c2a363a736a4fc6e1637 | |
| parent | a0d737d0cbe792d3ca4002e6b12317f98c8e590f (diff) | |
Update python/mediumlevelil.py
Co-Authored-By: joshwatson <josh@joshwatson.com>
| -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: |
