summaryrefslogtreecommitdiff
path: root/src/arch/dalvik/link.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-12-15 13:40:28 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-12-15 13:40:28 (GMT)
commit124c8410dbfcad59d66b850c50c96ec73a607ab7 (patch)
treeb7127c66abfccd11b9126741e2809a893ee44143 /src/arch/dalvik/link.c
parentdb1a6171007a6641a4659392c9bcc05670396643 (diff)
Defined proper accesses to instructions loaded by a processor.
Diffstat (limited to 'src/arch/dalvik/link.c')
-rw-r--r--src/arch/dalvik/link.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/arch/dalvik/link.c b/src/arch/dalvik/link.c
index 311f672..694ec65 100644
--- a/src/arch/dalvik/link.c
+++ b/src/arch/dalvik/link.c
@@ -151,6 +151,8 @@ void handle_dalvik_packed_switch_links(GArchInstruction *instr, GArchProcessor *
g_arch_instruction_link_with(instr, target, ILT_CASE_JUMP);
+ g_object_unref(G_OBJECT(target));
+
}
/* Autres cas */
@@ -223,6 +225,8 @@ void handle_dalvik_packed_switch_links(GArchInstruction *instr, GArchProcessor *
g_arch_instruction_link_with(instr, target, ILT_CASE_JUMP);
+ g_object_unref(G_OBJECT(target));
+
}
}
@@ -298,6 +302,9 @@ void handle_dalvik_packed_switch_links(GArchInstruction *instr, GArchProcessor *
}
+ if (switch_ins != NULL)
+ g_object_unref(G_OBJECT(switch_ins));
+
}
}