[Filesystem] fix lock file permissions

This commit is contained in:
fritzmg 2018-07-09 11:21:24 +02:00 committed by Nicolas Grekas
parent bacb9ed333
commit 7a68fea2af
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class LockHandler
if (!$this->handle = fopen($this->file, 'r+') ?: fopen($this->file, 'r')) {
if ($this->handle = fopen($this->file, 'x')) {
chmod($this->file, 0444);
chmod($this->file, 0644);
} elseif (!$this->handle = fopen($this->file, 'r+') ?: fopen($this->file, 'r')) {
usleep(100); // Give some time for chmod() to complete
$this->handle = fopen($this->file, 'r+') ?: fopen($this->file, 'r');