diff options
Diffstat (limited to 'Kernel/CoreDump.cpp')
-rw-r--r-- | Kernel/CoreDump.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/CoreDump.cpp b/Kernel/CoreDump.cpp index 7b81f61793..b03f27da82 100644 --- a/Kernel/CoreDump.cpp +++ b/Kernel/CoreDump.cpp @@ -84,7 +84,7 @@ RefPtr<FileDescription> CoreDump::create_target_file(const Process& process, con auto fd_or_error = VFS::the().open( lexical_path.basename(), O_CREAT | O_WRONLY | O_EXCL, - 0, // We will enable reading from userspace when we finish generating the coredump file + S_IFREG, // We will enable reading from userspace when we finish generating the coredump file *dump_directory.value(), UidAndGid { process.uid(), process.gid() }); |