diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-21 17:56:53 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-21 17:56:53 -0600 |
commit | 030cc697719ee3bc275f3b58ab5a4f536a967aa7 (patch) | |
tree | 12ce4081c77a58d987669b82000cfeb68670f62b /drivers | |
parent | b25c7e31eadd82addd528e5d78c4857a83c9f87a (diff) | |
parent | 64077ff3de40d12eec83501cb06280a0e02027fc (diff) | |
download | redot-engine-030cc697719ee3bc275f3b58ab5a4f536a967aa7.tar.gz |
Merge pull request #96399 from andyprice/fileperms
Unix: Don't create world-writable files when safe save is enabled
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/unix/file_access_unix.cpp | 2 | ||||
-rw-r--r-- | drivers/unix/file_access_unix_pipe.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/unix/file_access_unix.cpp b/drivers/unix/file_access_unix.cpp index 43ad0799ba..4b92e5f8a1 100644 --- a/drivers/unix/file_access_unix.cpp +++ b/drivers/unix/file_access_unix.cpp @@ -118,7 +118,7 @@ Error FileAccessUnix::open_internal(const String &p_path, int p_mode_flags) { last_error = ERR_FILE_CANT_OPEN; return last_error; } - fchmod(fd, 0666); + fchmod(fd, 0644); path = String::utf8(cs.ptr()); f = fdopen(fd, mode_string); diff --git a/drivers/unix/file_access_unix_pipe.cpp b/drivers/unix/file_access_unix_pipe.cpp index 0a78429dec..fd60bec9d0 100644 --- a/drivers/unix/file_access_unix_pipe.cpp +++ b/drivers/unix/file_access_unix_pipe.cpp @@ -70,7 +70,7 @@ Error FileAccessUnixPipe::open_internal(const String &p_path, int p_mode_flags) struct stat st = {}; int err = stat(path.utf8().get_data(), &st); if (err) { - if (mkfifo(path.utf8().get_data(), 0666) != 0) { + if (mkfifo(path.utf8().get_data(), 0600) != 0) { last_error = ERR_FILE_CANT_OPEN; return last_error; } |