Return SPACE_UNKNOWN if disk_free_space is disabled when getting the free space on a local storage

This commit is contained in:
Robin Appelman 2014-01-02 13:19:10 +01:00
Родитель 095f9b8ee0
Коммит 25370fcb82
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -256,7 +256,7 @@ if (\OC_Util::runningOnWindows()) {
public function free_space($path) {
$space = @disk_free_space($this->datadir . $path);
if ($space === false) {
if ($space === false || is_null($space)) {
return \OC\Files\SPACE_UNKNOWN;
}
return $space;