...
| Code Block | ||
|---|---|---|
| ||
int x, y, z;
if (z == 0) {
printf("Initial value was %d\n", x);
x -= y;
printf("Current value is %d\n", x)
}
|
Noncompliant Code Example
...
| bgColor | #ffcccc |
|---|
Risk Assessment
Recommendation | Severity | Likelihood | Remediation Cost | Priority | Level |
|---|---|---|---|---|---|
EXP19-C | medium | probable | medium | P8 | L2 |
...