diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2018-07-08 21:54:13 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2018-07-08 21:54:13 (GMT) |
commit | 21af77b7c44126c05b62319f99a679fc748b579e (patch) | |
tree | 07414fb7bb16cf60e2e827b507d1e5ffbb623414 /plugins/mobicore | |
parent | 6f3c4bc6ec571dcca8e25b9f82a0c2e72310900c (diff) |
Cleaned the demangling system.
Diffstat (limited to 'plugins/mobicore')
-rw-r--r-- | plugins/mobicore/symbols.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mobicore/symbols.c b/plugins/mobicore/symbols.c index 5b612cc..df8d62f 100644 --- a/plugins/mobicore/symbols.c +++ b/plugins/mobicore/symbols.c @@ -114,7 +114,7 @@ static bool load_all_mclf_basic_entry_points(GMCLFFormat *format) if (ep != 0x0) { - routine = try_to_demangle_routine("entry_point"); + routine = g_binary_format_decode_routine(G_BIN_FORMAT(format), "entry_point"); register_mclf_entry_point(format, ep, 0, routine); } |