...
Code Block | ||
---|---|---|
| ||
char *temp; char copy[16]; temp = getenv("TEST_ENV"); if (temp != NULL) { strcpy(buffcopy, temp); } |
Compliant Solution
...
...
Code Block | ||
---|---|---|
| ||
char *temp; char copy[16]; temp = getenv("TEST_ENV"); if (temp != NULL) { strcpy(buffcopy, temp); } |
...