summaryrefslogtreecommitdiff
path: root/src/format/dex/dex.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/format/dex/dex.c')
-rwxr-xr-xsrc/format/dex/dex.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/format/dex/dex.c b/src/format/dex/dex.c
index 3388861..582390a 100755
--- a/src/format/dex/dex.c
+++ b/src/format/dex/dex.c
@@ -265,16 +265,16 @@ GBinFormat *g_dex_format_new(GBinContent *content, GExeFormat *parent, GtkStatus
/* TODO : vérifier que les *_id ne se chevauchent pas */
- if (!load_all_dex_types(result))
+ if (!load_all_dex_types(result, status))
goto gdfn_error;
- if (!load_all_dex_fields(result))
+ if (!load_all_dex_fields(result, status))
goto gdfn_error;
- if (!load_all_dex_classes(result))
+ if (!load_all_dex_classes(result, status))
goto gdfn_error;
- if (!g_binary_format_complete_loading(base))
+ if (!g_binary_format_complete_loading(base, status))
goto gdfn_error;
return base;