diff options
Diffstat (limited to 'plugins/dalvik/context.c')
| -rw-r--r-- | plugins/dalvik/context.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/plugins/dalvik/context.c b/plugins/dalvik/context.c index b08678c..9cf878b 100644 --- a/plugins/dalvik/context.c +++ b/plugins/dalvik/context.c @@ -373,7 +373,7 @@ bool g_dalvik_context_register_array_data_padding(GDalvikContext *ctx, const vmp  *                                                                             *  ******************************************************************************/ -GArchInstruction *g_dalvik_context_get_raw_data(GDalvikContext *ctx, const GBinContent *content, vmpa2t *pos) +GArchInstruction *g_dalvik_context_get_raw_data(GDalvikContext *ctx, GBinContent *content, vmpa2t *pos)  {      GArchInstruction *result;               /* Instruction à retourner     */      raw_data_area *found;                   /* Zone de couverture trouvée  */ @@ -390,7 +390,7 @@ GArchInstruction *g_dalvik_context_get_raw_data(GDalvikContext *ctx, const GBinC      if (found)      { -        restricted = g_restricted_content_new_ro(content, &found->range); +        restricted = g_restricted_content_new(content, &found->range);          length = get_mrange_length(&found->range);          count = length / found->item_len; | 
