X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=util.cpp;h=8f42a9882aa099c85825c3dde7efdbca51f6d36a;hp=25a8da4a1e8893ca2407615d418aeab7fffe81d5;hb=8095c4ac52431d9e593ece77bdc21566a2ed9240;hpb=4a33511c426ae90abb261f09fda1e31e0c30ca16 diff --git a/util.cpp b/util.cpp index 25a8da4..8f42a98 100644 --- a/util.cpp +++ b/util.cpp @@ -2,28 +2,37 @@ #include #include #include +#include #include #include #include "log.h" #include "util.h" +#ifndef O_TMPFILE +#define __O_TMPFILE 020000000 +#define O_TMPFILE (__O_TMPFILE | O_DIRECTORY) +#endif + using namespace std; int make_tempfile(const std::string &contents) { - char filename[] = "/tmp/cubemap.XXXXXX"; - mode_t old_umask = umask(077); - int fd = mkstemp(filename); - umask(old_umask); + int fd = open("/tmp", O_RDWR | O_TMPFILE, 0600); if (fd == -1) { - log_perror("mkstemp"); - return -1; - } + char filename[] = "/tmp/cubemap.XXXXXX"; + mode_t old_umask = umask(077); + fd = mkstemp(filename); + if (fd == -1) { + log_perror("mkstemp"); + return -1; + } + umask(old_umask); - if (unlink(filename) == -1) { - log_perror("unlink"); - // Can still continue; + if (unlink(filename) == -1) { + log_perror("unlink"); + // Can still continue. + } } const char *ptr = contents.data();