summaryrefslogtreecommitdiff
path: root/plugins/androhelpers
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-09-11 18:29:09 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-09-11 18:29:09 (GMT)
commit29f3cf8c660c5ce51dbcdbd0c770a1d9831cf1a8 (patch)
tree49257065715c40b1af42c0dcd536fb85acc45a1c /plugins/androhelpers
parent49f75f22fe67ac356f05c7f81d3a78c48461655b (diff)
Handled Dex classes used as marker interfaces and Dex virtual methods.
Diffstat (limited to 'plugins/androhelpers')
-rw-r--r--plugins/androhelpers/try_n_catch.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/androhelpers/try_n_catch.c b/plugins/androhelpers/try_n_catch.c
index 83be896..0e2ae43 100644
--- a/plugins/androhelpers/try_n_catch.c
+++ b/plugins/androhelpers/try_n_catch.c
@@ -347,6 +347,9 @@ static void look_for_exception_handlers(const GLoadedBinary *binary, const GDexF
body = g_dex_method_get_dex_body(method);
+ if (body == NULL)
+ return;
+
if (body->tries_size == 0)
return;