diff options
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/overjump/overjump.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/overjump/overjump.c b/src/plugins/overjump/overjump.c index e654040..2e5bcba 100644 --- a/src/plugins/overjump/overjump.c +++ b/src/plugins/overjump/overjump.c @@ -40,7 +40,7 @@ typedef struct _overjump_instance      uint8_t *bin_data;                      /* Données binaires brutes     */      exe_format *format;                     /* Format du binaire           */ -    asm_processor *proc;                    /* Architecture du binaire     */ +    void/*asm_processor*/ *proc;                    /* Architecture du binaire     */      disass_options *options;                /* Options de désassemblage    */      bin_part **parts;                       /* Parts binaires à ausculter  */ @@ -78,7 +78,7 @@ overjump_instance *create_overjump_instance(openida_binary *binary)      result->bin_data = get_openida_binary_data(binary, &result->bin_length);      result->format = get_openida_binary_format(binary); -    result->proc = get_openida_binary_processor(binary); +    //result->proc = get_openida_binary_processor(binary);      result->options = get_openida_binary_options(binary);      result->parts = get_elf_default_code_parts(result->format, &result->parts_count); @@ -174,7 +174,7 @@ GRenderingLine *disassemble_address(overjump_instance *instance, vmpa_t addr, bo      offset = addr; - +    /*      instr = decode_instruction(instance->proc, &instance->bin_data[start],                                 &npos, size, start, offset); @@ -182,7 +182,7 @@ GRenderingLine *disassemble_address(overjump_instance *instance, vmpa_t addr, bo      line = g_code_line_new(offset, instr, instance->options);      g_rendering_line_add_to_lines(&result, line); - +    */      return result;  | 
