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:
|
||||
info->operands[0].action = ZYDIS_OPERAND_ACTION_CONDWRITE;
|
||||
break;
|
||||
case ZYDIS_OPERAND_ACTION_READWRITE:
|
||||
info->operands[0].action = ZYDIS_OPERAND_ACTION_READ_CONDWRITE;
|
||||
break;
|
||||
default:
|
||||
ZYDIS_UNREACHABLE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue