summaryrefslogtreecommitdiff
path: root/src/format/dex/class.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2017-05-08 08:01:03 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2017-05-08 08:01:03 (GMT)
commit9a548294c18ae04ef00ee0227ada8eb8b050b5fa (patch)
treec8651fc1fb70579a5bd3f3a61ba04f13ae58efb5 /src/format/dex/class.c
parent13be5aa2ac44f7bfc70ee25e7ba20ae2adf58ad5 (diff)
Ensured a Dex routine is not abstract nor native before adding a symbol into the disassembled code.
Diffstat (limited to 'src/format/dex/class.c')
-rw-r--r--src/format/dex/class.c30
1 files changed, 18 insertions, 12 deletions
diff --git a/src/format/dex/class.c b/src/format/dex/class.c
index 3822546..897720a 100644
--- a/src/format/dex/class.c
+++ b/src/format/dex/class.c
@@ -248,16 +248,19 @@ GDexClass *g_dex_class_new(GDexFormat *format, const class_def_item *def)
result->direct_methods[i] = method;
/* Ajout à la liste des symboles */
+ if (g_dex_method_has_dex_body(method))
+ {
+ routine = g_dex_method_get_routine(method);
- routine = g_dex_method_get_routine(method);
+ g_object_ref(G_OBJECT(ctype));
+ g_binary_routine_set_namespace(routine, ctype, ".");
- g_object_ref(G_OBJECT(ctype));
- g_binary_routine_set_namespace(routine, ctype, ".");
+ symbol = g_binary_symbol_new(STP_ROUTINE);
+ g_binary_symbol_attach_routine(symbol, routine);
- symbol = g_binary_symbol_new(STP_ROUTINE);
- g_binary_symbol_attach_routine(symbol, routine);
+ g_binary_format_add_symbol(G_BIN_FORMAT(format), symbol);
- g_binary_format_add_symbol(G_BIN_FORMAT(format), symbol);
+ }
}
@@ -274,16 +277,19 @@ GDexClass *g_dex_class_new(GDexFormat *format, const class_def_item *def)
result->virtual_methods[i] = method;
/* Ajout à la liste des symboles */
+ if (g_dex_method_has_dex_body(method))
+ {
+ routine = g_dex_method_get_routine(method);
- routine = g_dex_method_get_routine(method);
+ g_object_ref(G_OBJECT(ctype));
+ g_binary_routine_set_namespace(routine, ctype, ".");
- g_object_ref(G_OBJECT(ctype));
- g_binary_routine_set_namespace(routine, ctype, ".");
+ symbol = g_binary_symbol_new(STP_ROUTINE);
+ g_binary_symbol_attach_routine(symbol, routine);
- symbol = g_binary_symbol_new(STP_ROUTINE);
- g_binary_symbol_attach_routine(symbol, routine);
+ g_binary_format_add_symbol(G_BIN_FORMAT(format), symbol);
- g_binary_format_add_symbol(G_BIN_FORMAT(format), symbol);
+ }
}