...
Code Block | ||||
---|---|---|---|---|
| ||||
#include <stdlib.h> void func(void) { mkstemp("/tmp/edXXXXXX"); } |
The behavior of mkstemp()
is described in more detail in FIO43-C. Do not create temporary files in shared directories.
Compliant Solution (POSIX)
...
...
Code Block | ||||
---|---|---|---|---|
| ||||
#include <stdlib.h> void func(void) { mkstemp("/tmp/edXXXXXX"); } |
The behavior of mkstemp()
is described in more detail in FIO43-C. Do not create temporary files in shared directories.
...