1
0
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:
BITDEFENDER\vlutas 2021-11-02 11:26:52 +02:00
parent 433e723e07
commit 656916d92d

View File

@ -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);
}