diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/elf/helper_x86.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format/elf/helper_x86.c b/src/format/elf/helper_x86.c index db569fb..7d85311 100644 --- a/src/format/elf/helper_x86.c +++ b/src/format/elf/helper_x86.c @@ -220,7 +220,7 @@ GArchInstruction **decode_elf_relocations(GElfFormat *format, const elf_shdr *pl address = plt_address + pos; instr = g_arch_processor_decode_instruction(proc, NULL /*FIXME*/, &G_BIN_FORMAT(format)->content[plt_start], - &pos, plt_size, 0/* FIXME*/, address, NULL /*FIXME*/); + &pos, plt_size, address, NULL /*FIXME*/); result = (GArchInstruction **)realloc(result, ++(*count) * sizeof(GArchInstruction *)); result[*count - 1] = instr; |