Versions Compared

Key

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

...

Code Block
bgColor#ffcccc
int login;

if (invalid_login())
  login = 0;
else
  login = 1;

A developer maintainer might add a debugging statement to authenticate the userdebug statement or other logic, but forget to add opening and closing braces.

...