From 656916d92d83400e685fc14b6062176aa830d3af Mon Sep 17 00:00:00 2001 From: "BITDEFENDER\\vlutas" Date: Tue, 2 Nov 2021 11:26:52 +0200 Subject: [PATCH] Added missing paranthesis. --- bddisasm/bddisasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bddisasm/bddisasm.c b/bddisasm/bddisasm.c index 1b232c3..d8ea637 100644 --- a/bddisasm/bddisasm.c +++ b/bddisasm/bddisasm.c @@ -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); }