The product uses an expression in which operator precedence causes incorrect logic to be used.
Extended description
While often just a bug, operator precedence logic errors can have serious consequences if they are used in security-critical code, such as making an authentication decision.
Best practices to prevent this CWE
Phase: Implementation
Regularly wrap sub-expressions in parentheses, especially in security-critical code.