Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: xref FIO43-C

...

Code Block
bgColor#FFcccc
langc
#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)

...