diff options
| author | Cyrille Bagard <nocbos@gmail.com> | 2012-08-03 13:03:26 (GMT) | 
|---|---|---|
| committer | Cyrille Bagard <nocbos@gmail.com> | 2012-08-03 13:03:26 (GMT) | 
| commit | b7c83221f2a60be8ee5d44a7599dbe6869af005f (patch) | |
| tree | 814e294533920d18f8734baa9aaef47c676e520a /src/format/dex | |
| parent | 7d2b7ca95966c2d687526cd75a96d1ea67d3f503 (diff) | |
Loaded the permissions used by an APK file.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@255 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/format/dex')
| -rw-r--r-- | src/format/dex/method.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/format/dex/method.c b/src/format/dex/method.c index c22c11f..25145f5 100644 --- a/src/format/dex/method.c +++ b/src/format/dex/method.c @@ -147,14 +147,16 @@ GDexMethod *g_dex_method_new(const GDexFormat *format, const encoded_method *see      result->info = *seed;      result->body = item; -    printf(" ==== %s ====\n", g_binary_routine_get_name(routine)); +    //printf(" ==== %s ====\n", g_binary_routine_get_name(routine));      //printf(" method idx :: %d\n", seed->method_idx_diff);      //printf(" code size  :: %d\n", item.insns_size); +    /*      printf(" code regs  :: %d\n", item.registers_size);      printf(" code ins   :: %d\n", item.ins_size);      printf(" code outs  :: %d\n", item.outs_size); +    */      //printf(" method idx :: %lld\n", *last); | 
