diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/x86/instruction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/instruction.c b/src/arch/x86/instruction.c index 5f6e7ee..3cf4a6b 100644 --- a/src/arch/x86/instruction.c +++ b/src/arch/x86/instruction.c @@ -551,7 +551,7 @@ static InstructionLinkType x86_get_instruction_link(const GX86Instruction *instr { case XOP_JLE_REL1632: relative = G_X86_RELATIVE_OPERAND(g_arch_instruction_get_operand(G_ARCH_INSTRUCTION(instr), 0)); - if (g_imm_operand_to_vmpa_t(g_x86_relative_operand_get_value(relative), addr)) result = ILT_CALL; + if (g_imm_operand_to_vmpa_t(g_x86_relative_operand_get_value(relative), addr)) result = ILT_JUMP_IF_TRUE; else result = ILT_NONE; break; |