Merge pull request #1436 from owncloud/cache_check_path

Cache: check for invalid paths in getFileInfo/getDirectoryContent
This commit is contained in:
Thomas Müller 2013-02-04 05:51:34 -08:00
commit 814369e0cd
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($directory)) {
return $result;
}
$path = Filesystem::normalizePath($this->fakeRoot . '/' . $directory);
/**
* @var \OC\Files\Storage\Storage $storage