diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-03-05 00:17:30 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-03-05 00:17:30 (GMT) |
commit | 13bd8d546b2de76b1f5a1d758c9e476f7d859f39 (patch) | |
tree | 3d1c7dc3343ad4d460a9245bd2bb138fada611b3 /plugins/theseus | |
parent | aba1a14ba28f6df51b3be15648b6f55eea4a0e19 (diff) |
Printed the string values of the Dex pool in the operand rendering.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@237 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'plugins/theseus')
-rw-r--r-- | plugins/theseus/theseus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/theseus/theseus.c b/plugins/theseus/theseus.c index b04c355..5cc2d98 100644 --- a/plugins/theseus/theseus.c +++ b/plugins/theseus/theseus.c @@ -2,7 +2,7 @@ /* OpenIDA - Outil d'analyse de fichiers binaires * theseus.c - décompilation en fonction du flot d'exécution * - * Copyright (C) 2010-2011 Cyrille Bagard + * Copyright (C) 2010-2012 Cyrille Bagard * * This file is part of OpenIDA. * @@ -506,7 +506,7 @@ static GRenderingLine *disassemble_target_address(GOpenidaBinary *binary, GRende /* Décodage des instructions */ instr = g_arch_processor_decode_instruction(proc, NULL /*FIXME*/, data, - &offset, length, 0/*offset*/, target); + &offset, length, 0/*offset*/, target, NULL/*FIXME*/); line = g_code_line_new(target, instr, options); g_rendering_line_add_to_lines(&result, line); |