Browse Source

Merge pull request #78347 from bruvzg/unix_fix_temp_chmod

[Unix] Fix temporary file permissions.
Rémi Verschelde 2 năm trước cách đây
mục cha
commit
b7976f4ad6
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      drivers/unix/file_access_unix.cpp

+ 4 - 0
drivers/unix/file_access_unix.cpp

@@ -108,6 +108,10 @@ Error FileAccessUnix::open_internal(const String &p_path, int p_mode_flags) {
 			last_error = ERR_FILE_CANT_OPEN;
 			return last_error;
 		}
+		// Fix temporary file permissions (defaults to 0600 instead of 0666 & ~umask).
+		mode_t mask = umask(022);
+		umask(mask);
+		fchmod(fd, 0666 & ~mask);
 		path = String::utf8(cs.ptr());
 
 		f = fdopen(fd, mode_string);