mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-11-10 13:01:03 +00:00
Correct disassembling of bytecode ICMP_ULT instruction
This commit is contained in:
parent
ae291e11ee
commit
a627d09689
1 changed files with 1 additions and 1 deletions
|
|
@ -3360,7 +3360,7 @@ void cli_byteinst_describe(const struct cli_bc_inst *inst, unsigned *bbnum)
|
||||||
printf("%d = (%d >= %d)", inst->dest, inst->u.binop[0], inst->u.binop[1]);
|
printf("%d = (%d >= %d)", inst->dest, inst->u.binop[0], inst->u.binop[1]);
|
||||||
break;
|
break;
|
||||||
case OP_BC_ICMP_ULT:
|
case OP_BC_ICMP_ULT:
|
||||||
printf("%d = (%d > %d)", inst->dest, inst->u.binop[0], inst->u.binop[1]);
|
printf("%d = (%d < %d)", inst->dest, inst->u.binop[0], inst->u.binop[1]);
|
||||||
break;
|
break;
|
||||||
case OP_BC_ICMP_ULE:
|
case OP_BC_ICMP_ULE:
|
||||||
printf("%d = (%d >= %d)", inst->dest, inst->u.binop[0], inst->u.binop[1]);
|
printf("%d = (%d >= %d)", inst->dest, inst->u.binop[0], inst->u.binop[1]);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue