diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-09-11 18:29:09 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-09-11 18:29:09 (GMT) |
commit | 29f3cf8c660c5ce51dbcdbd0c770a1d9831cf1a8 (patch) | |
tree | 49257065715c40b1af42c0dcd536fb85acc45a1c /plugins/androhelpers | |
parent | 49f75f22fe67ac356f05c7f81d3a78c48461655b (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.c | 3 |
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; |