...
Note that this example also violates rule [DCL30-C. Do not refer to an object outside of its lifetime].
| Code Block | ||
|---|---|---|
| ||
int func(char *var) {
char env[1024];
if (snprintf(env, sizeof(env),"TEST=%s", var) < 0) {
/* Handle Error */
}
return putenv(env);
}
|
...