Skip to content

Commit a70fd1b

Browse files
authored
Merge pull request #26344 from J0WI/fs-early-root
Return early if path is root
2 parents eceef4c + 0c9b8ad commit a70fd1b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lib/private/Files/Filesystem.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -777,10 +777,6 @@ public static function hasUpdated($path, $time) {
777777
* @return string
778778
*/
779779
public static function normalizePath($path, $stripTrailingSlash = true, $isAbsolutePath = false, $keepUnicode = false) {
780-
if (is_null(self::$normalizedPathCache)) {
781-
self::$normalizedPathCache = new CappedMemoryCache(2048);
782-
}
783-
784780
/**
785781
* FIXME: This is a workaround for existing classes and files which call
786782
* this function with another type than a valid string. This
@@ -789,16 +785,20 @@ public static function normalizePath($path, $stripTrailingSlash = true, $isAbsol
789785
*/
790786
$path = (string)$path;
791787

788+
if ($path === '') {
789+
return '/';
790+
}
791+
792+
if (is_null(self::$normalizedPathCache)) {
793+
self::$normalizedPathCache = new CappedMemoryCache(2048);
794+
}
795+
792796
$cacheKey = json_encode([$path, $stripTrailingSlash, $isAbsolutePath, $keepUnicode]);
793797

794798
if ($cacheKey && isset(self::$normalizedPathCache[$cacheKey])) {
795799
return self::$normalizedPathCache[$cacheKey];
796800
}
797801

798-
if ($path === '') {
799-
return '/';
800-
}
801-
802802
//normalize unicode if possible
803803
if (!$keepUnicode) {
804804
$path = \OC_Util::normalizeUnicode($path);

0 commit comments

Comments
 (0)