Fix integer overflow on 32-bit systems when testing free space for writing a config file.

pull/36759/head
Sergei Golovan 3 years ago committed by Simon L
parent bba3a1ccf0
commit 1cb50c5afa
  1. 2
      lib/private/Config.php

@ -288,7 +288,7 @@ 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 && (int)$df < $size) {
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!");
}

Loading…
Cancel
Save