about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-06-19 10:41:42 +0200
committerGitHub <noreply@github.com>2018-06-19 10:41:42 +0200
commit8f5ca332780cf9e08761060e9903bc085dbc8430 (patch)
tree03b6f3c721fbfbf58e80679d7e0a64cccae091b6
parent1aaa5168b1a7963166d7fe9f3e8999e06583cb64 (diff)
parent4464a80107531440dda10406b73b952a3a080b8e (diff)
downloadmiasm-8f5ca332780cf9e08761060e9903bc085dbc8430.tar.gz
miasm-8f5ca332780cf9e08761060e9903bc085dbc8430.zip
Merge pull request #768 from serpilliere/arm_fix_tipo
Arm: fix tipo
-rw-r--r--miasm2/arch/arm/disasm.py2
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)