Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this noncompliant code example, a bitwise expression is used in a conditional expression.

Code Block
bgColor#FFcccc
if (!(getuid() & geteuid() == 0)) { 
  /* ... */ 
} 

...