diff options
| author | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-06-19 08:36:28 +0200 |
|---|---|---|
| committer | Fabrice Desclaux <fabrice.desclaux@cea.fr> | 2018-06-19 08:36:28 +0200 |
| commit | 4464a80107531440dda10406b73b952a3a080b8e (patch) | |
| tree | 6a37b413fdba1858693fbf083f580bd77344ac4b | |
| parent | ff8efb442a7802fcbd2b5350b2e53f959287ee10 (diff) | |
| download | miasm-4464a80107531440dda10406b73b952a3a080b8e.tar.gz miasm-4464a80107531440dda10406b73b952a3a080b8e.zip | |
Arm: fix tipo
| -rw-r--r-- | miasm2/arch/arm/disasm.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/arch/arm/disasm.py b/miasm2/arch/arm/disasm.py index 205e2a17..8997fa2b 100644 --- a/miasm2/arch/arm/disasm.py +++ b/miasm2/arch/arm/disasm.py @@ -24,7 +24,7 @@ def cb_arm_fix_call(mn, cur_bloc, symbol_pool, offsets_to_dis, *args, **kwargs): return if not l2.args[1] in values: return - loc_key_cst = self.symbol_pool.getby_offset_create(l1.offset + 4) + loc_key_cst = symbol_pool.getby_offset_create(l1.offset + 4) cur_bloc.add_cst(loc_key_cst, AsmConstraint.c_next) offsets_to_dis.add(l1.offset + 4) |