mirror of https://github.com/x64dbg/zydis
Fixed operand-action for MVEX-instructions with `READWRITE` operands
This commit is contained in:
parent
8ef597970d
commit
2ee8332529
|
@ -1956,6 +1956,9 @@ FinalizeOperand:
|
||||||
case ZYDIS_OPERAND_ACTION_WRITE:
|
case ZYDIS_OPERAND_ACTION_WRITE:
|
||||||
info->operands[0].action = ZYDIS_OPERAND_ACTION_CONDWRITE;
|
info->operands[0].action = ZYDIS_OPERAND_ACTION_CONDWRITE;
|
||||||
break;
|
break;
|
||||||
|
case ZYDIS_OPERAND_ACTION_READWRITE:
|
||||||
|
info->operands[0].action = ZYDIS_OPERAND_ACTION_READ_CONDWRITE;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
ZYDIS_UNREACHABLE;
|
ZYDIS_UNREACHABLE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue