diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2008-10-30 18:35:47 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2008-10-30 18:35:47 (GMT) |
commit | 7c7109c1a8aaedea40af4b96d4b81d6ba4496226 (patch) | |
tree | 471709f8bccae04f492d03017a1e94d0ca48b962 /src/arch/x86 | |
parent | 8a30afc05eed869865ba4dc9c107119f7ec00fe4 (diff) |
Displayed all found strings on binary loading.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@40 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/arch/x86')
-rw-r--r-- | src/arch/x86/processor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/arch/x86/processor.c b/src/arch/x86/processor.c index 8cc3a72..8be503c 100644 --- a/src/arch/x86/processor.c +++ b/src/arch/x86/processor.c @@ -509,6 +509,7 @@ void x86_print_instruction(const asm_x86_processor *proc, const exe_format *form break; case STP_STRING: + label = escape_crlf_bin_string(label); snprintf(&opbuffer[i][oplen], 256 - oplen, " \"%s\"", label); break; |