vfs/cache: fix handling of special characters in file names (#5875)

This commit is contained in:
Bumsu Hyeon 2022-01-13 21:23:25 +09:00 committed by GitHub
parent 06bdf7c64c
commit 4b99e84242
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -196,7 +196,6 @@ func createRootDirs(parentOSPath string, relativeDirOSPath string) (dataOSPath s
// Returns an os path for the data cache file.
func (c *Cache) createItemDir(name string) (string, error) {
parent := vfscommon.FindParent(name)
leaf := filepath.Base(name)
parentPath := c.toOSPath(parent)
err := createDir(parentPath)
if err != nil {
@ -207,7 +206,7 @@ func (c *Cache) createItemDir(name string) (string, error) {
if err != nil {
return "", fmt.Errorf("failed to create metadata cache item directory: %w", err)
}
return filepath.Join(parentPath, leaf), nil
return c.toOSPath(name), nil
}
// getBackend gets a backend for a cache root dir