diff options
-rw-r--r-- | sandbox/linux/suid/sandbox.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/linux/suid/sandbox.cc b/sandbox/linux/suid/sandbox.cc index a2332d8..a81ba1a 100644 --- a/sandbox/linux/suid/sandbox.cc +++ b/sandbox/linux/suid/sandbox.cc @@ -74,7 +74,7 @@ static int CloneChrootHelperProcess() { if (pid == 0) { // We create a temp directory for our chroot. Nobody should ever write into - // it, so it's root:root 0555. + // it, so it's root:root mode 000. char kTempDirectoryTemplate[] = "/tmp/chrome-sandbox-chroot-XXXXXX"; const char* temp_dir = mkdtemp(kTempDirectoryTemplate); if (!temp_dir) |