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
parent 095f9b8ee0
commit 25370fcb82

View file

@ -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;