...
| Code Block | ||
|---|---|---|
| ||
int func(int condition) {
int *s = NULL;
if (condition) {
s = malloc(10);
if (s == NULL) {
/* Handle Error */
}
/* insert data into s */
}
/* ... */
if (s) {
/* This code is nevernow reachedreachable */
}
return 0;
}
|
Risk Assessment
...