about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorFabrice Desclaux <fabrice.desclaux@cea.fr>2018-08-03 21:36:49 +0200
committerFabrice Desclaux <fabrice.desclaux@cea.fr>2018-08-06 18:58:07 +0200
commitd682539bac3e5ad59474ea6ad6af5f1760074b80 (patch)
tree93211ce422fdd795a52f6829c4b493d66fe49f4c
parent9b427236e23e1fe1fbf7580bf8cae4e21c27b8ec (diff)
downloadmiasm-d682539bac3e5ad59474ea6ad6af5f1760074b80.tar.gz
miasm-d682539bac3e5ad59474ea6ad6af5f1760074b80.zip
Analysis: fix tipo
-rw-r--r--miasm2/analysis/data_flow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/analysis/data_flow.py b/miasm2/analysis/data_flow.py
index d0d8847b..22a07687 100644
--- a/miasm2/analysis/data_flow.py
+++ b/miasm2/analysis/data_flow.py
@@ -363,7 +363,7 @@ def _relink_block_node(ircfg, loc_key, son_loc_key, replace_dct):
         )
 
         # Link parent to new dst
-        ircfg.add_edge(parent, son_loc_key)
+        ircfg.add_uniq_edge(parent, son_loc_key)
 
         # Unlink block
         ircfg.blocks[new_block.loc_key] = new_block