Versions Compared

Key

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

...

In this noncompliant code example, a bitwise & operator operator is used with the results of an two equality-expressionexpressions:

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

...