diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/dex/method.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format/dex/method.c b/src/format/dex/method.c index 9c911d1..b74a713 100644 --- a/src/format/dex/method.c +++ b/src/format/dex/method.c @@ -193,7 +193,7 @@ GDexMethod *g_dex_method_new(GDexFormat *format, const encoded_method *seed, ule result->info = *seed; result->body = item; - result->offset = seed->code_off + 4 * sizeof(uint16_t) + 2 *sizeof(uint32_t);/* TODO : faire plus propre ! */ + result->offset = seed->code_off + 4 * sizeof(uint16_t) + 2 * sizeof(uint32_t);/* TODO : faire plus propre ! */ init_vmpa(&addr, result->offset, VMPA_NO_VIRTUAL); init_mrange(&range, &addr, item.insns_size * sizeof(uint16_t)); |