Merge pull request #37159 from nextcloud/backport/37070/stable24

[stable24] add a check for disk_free_space in Config.php
This commit is contained in:
Simon L 2023-03-10 16:17:54 +01:00 committed by GitHub
commit 4bb5f8db2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -278,10 +278,12 @@ class Config {
}
// Never write file back if disk space should be too low
$df = disk_free_space($this->configDir);
$size = strlen($content) + 10240;
if ($df !== false && $df < (float)$size) {
throw new \Exception($this->configDir . " does not have enough space for writing the config file! Not writing it back!");
if (function_exists('disk_free_space')) {
$df = disk_free_space($this->configDir);
$size = strlen($content) + 10240;
if ($df !== false && $df < (float)$size) {
throw new \Exception($this->configDir . " does not have enough space for writing the config file! Not writing it back!");
}
}
// Try to acquire a file lock