Cache: check for invalid paths in getFileInfo/getDirectoryContent

This commit is contained in:
Robin Appelman 2013-02-03 23:34:27 +01:00
parent 561e6c4c5b
commit 80dd8d7802
1 changed files with 6 additions and 0 deletions

View File

@ -670,6 +670,9 @@ class View {
*/
public function getFileInfo($path) {
$data = array();
if (!Filesystem::isValidPath($path)) {
return $data;
}
$path = Filesystem::normalizePath($this->fakeRoot . '/' . $path);
/**
* @var \OC\Files\Storage\Storage $storage
@ -724,6 +727,9 @@ class View {
*/
public function getDirectoryContent($directory, $mimetype_filter = '') {
$result = array();
if (!Filesystem::isValidPath($path)) {
return $data;
}
$path = Filesystem::normalizePath($this->fakeRoot . '/' . $directory);
/**
* @var \OC\Files\Storage\Storage $storage