Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 10d31db

Browse files
authored
Merge pull request #28194 from vseanreesermsft/internal-merge-3.1-2021-08-10-1317
Merging internal commits for release/3.1
2 parents 45ddd4d + aa0d2c7 commit 10d31db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debug/createdump/dumpwriter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ DumpWriter::Release()
6161
bool
6262
DumpWriter::OpenDump(const char* dumpFileName)
6363
{
64-
m_fd = open(dumpFileName, O_WRONLY|O_CREAT|O_TRUNC, 0664);
64+
m_fd = open(dumpFileName, O_WRONLY|O_CREAT|O_TRUNC, S_IWUSR | S_IRUSR);
6565
if (m_fd == -1)
6666
{
6767
fprintf(stderr, "Could not open output %s: %s\n", dumpFileName, strerror(errno));

0 commit comments

Comments
 (0)