summaryrefslogtreecommitdiff
path: root/plugins/androhelpers/switch.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-05-07 14:24:16 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-05-07 14:24:16 (GMT)
commitc136e2c4c1ad02ea2e363fbe71ce54c6255793e2 (patch)
treeba19cc948ac23a3930d9943e94f8e37ec86991c1 /plugins/androhelpers/switch.c
parentb38035259b6e09c77d87950fe409fb72d09887d3 (diff)
Extended the Python bindings for the Dex format.
Diffstat (limited to 'plugins/androhelpers/switch.c')
-rw-r--r--plugins/androhelpers/switch.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/androhelpers/switch.c b/plugins/androhelpers/switch.c
index 5f18b87..2ef6277 100644
--- a/plugins/androhelpers/switch.c
+++ b/plugins/androhelpers/switch.c
@@ -412,6 +412,7 @@ bool extract_switch_info(GLoadedBinary *binary, bool link)
{
method = g_dex_class_get_method(class, false, j);
look_for_switch_instructions(method, instrs, binary, format, link);
+ g_object_unref(G_OBJECT(method));
}
meth_count = g_dex_class_count_methods(class, true);
@@ -419,8 +420,11 @@ bool extract_switch_info(GLoadedBinary *binary, bool link)
{
method = g_dex_class_get_method(class, true, j);
look_for_switch_instructions(method, instrs, binary, format, link);
+ g_object_unref(G_OBJECT(method));
}
+ g_object_unref(G_OBJECT(class));
+
}
g_object_unref(G_OBJECT(proc));