]> git.sesse.net Git - cubemap/blobdiff - util.cpp
Set umask explicitly before calling mkstemp().
[cubemap] / util.cpp
index dadeb379cd6d4be0154d1de53de1ef6a7d551183..5659bed0802bd1062644f79cc49b80234a9698da 100644 (file)
--- a/util.cpp
+++ b/util.cpp
@@ -21,11 +21,13 @@ int make_tempfile(const std::string &contents)
        char filename[] = "/tmp/cubemap.XXXXXX";
        int fd = open(filename, O_RDWR | O_TMPFILE, 0600);
        if (fd == -1) {
+               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");