...
Code Block | ||
---|---|---|
| ||
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.
...
...
Code Block | ||
---|---|---|
| ||
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.
...