summaryrefslogtreecommitdiff
path: root/plugins/androhelpers/params.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/params.c
parentb38035259b6e09c77d87950fe409fb72d09887d3 (diff)
Extended the Python bindings for the Dex format.
Diffstat (limited to 'plugins/androhelpers/params.c')
-rw-r--r--plugins/androhelpers/params.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/androhelpers/params.c b/plugins/androhelpers/params.c
index d85baca..26f4265 100644
--- a/plugins/androhelpers/params.c
+++ b/plugins/androhelpers/params.c
@@ -212,6 +212,7 @@ bool replace_parameters(GLoadedBinary *binary)
{
method = g_dex_class_get_method(class, false, j);
visit_all_method_operands(method, instrs);
+ g_object_unref(G_OBJECT(method));
}
meth_count = g_dex_class_count_methods(class, true);
@@ -219,8 +220,11 @@ bool replace_parameters(GLoadedBinary *binary)
{
method = g_dex_class_get_method(class, true, j);
visit_all_method_operands(method, instrs);
+ g_object_unref(G_OBJECT(method));
}
+ g_object_unref(G_OBJECT(class));
+
}
g_object_unref(G_OBJECT(proc));