diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-04-25 19:05:39 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-04-25 19:05:39 -0400 |
| commit | 6ef07eaf6f26b41fa9c10b9cacf02f6893b0017a (patch) | |
| tree | 723c36acd16a7d4f435ea4022c8097c02eb4e0c0 /python/mediumlevelil.py | |
| parent | ae147a96b2c0b9540113a2a1598c8f6c720534fb (diff) | |
Fix invalid index in phi list
Diffstat (limited to 'python/mediumlevelil.py')
| -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 bc7a5c89..f205714e 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -179,7 +179,7 @@ class MediumLevelILInstruction(object): value = [] for j in xrange(count.value / 2): var_id = operand_list[j * 2] - var_index = operand_list[(j * 2) + 2] + var_index = operand_list[(j * 2) + 1] value.append((function.Variable.from_identifier(self.function.source_function, var_id), var_index)) core.BNMediumLevelILFreeOperandList(operand_list) |
