diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-12-16 23:46:51 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-12-16 23:46:51 (GMT) |
commit | 8ff010a34762737016624a68f593d0e6736d4349 (patch) | |
tree | efcf9b65483ba94dd93d6c6a7227706424160c10 /src/format | |
parent | e4b56188b664e6b986733d456e6a0ea9b2da6d53 (diff) |
Tracked the ARM/Thumb areas in a clever way with levels.
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/format.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/format/format.c b/src/format/format.c index 82d9e42..323e006 100644 --- a/src/format/format.c +++ b/src/format/format.c @@ -208,10 +208,10 @@ void g_binary_format_setup_disassembling_context(const GBinFormat *format, GProc size_t i; /* Boucle de parcours */ for (i = 0; i < format->ep_count; i++) - g_proc_context_push_drop_point(ctx, format->entry_points[i]); + g_proc_context_push_drop_point(ctx, 0, format->entry_points[i]); for (i = 0; i < format->xp_count; i++) - g_proc_context_push_drop_point(ctx, format->extra_points[i]); + g_proc_context_push_drop_point(ctx, 0, format->extra_points[i]); } |