mirror of
https://github.com/bitdefender/bddisasm.git
synced 2025-01-03 20:00:54 +00:00
Added missing paranthesis.
This commit is contained in:
parent
433e723e07
commit
656916d92d
@ -4109,7 +4109,7 @@ NdDecodeWithContext(
|
||||
Instrux->BranchInfo.IsConditional = Instrux->Category == ND_CAT_COND_BR;
|
||||
// Indirect branches are those which get their target address from a register or memory, including RET familly.
|
||||
Instrux->BranchInfo.IsIndirect = ((!Instrux->Operands[0].Flags.IsDefault) &&
|
||||
(Instrux->Operands[0].Type == ND_OP_REG) || (Instrux->Operands[0].Type == ND_OP_MEM)) ||
|
||||
((Instrux->Operands[0].Type == ND_OP_REG) || (Instrux->Operands[0].Type == ND_OP_MEM))) ||
|
||||
(Instrux->Category == ND_CAT_RET);
|
||||
Instrux->BranchInfo.IsFar = !!(Instrux->CsAccess & ND_ACCESS_ANY_WRITE);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user