aboutsummaryrefslogtreecommitdiff
path: root/cryptfs
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-09-08 22:53:06 +0200
committerJakob Unterwurzacher2015-09-08 22:53:06 +0200
commitbfdbbbf8b476c810ac9d5c47a7fa6f7cc8904a55 (patch)
treeaf556055fa9a6bb9b264c40368906d7b5805bf0c /cryptfs
parent28cdff5889927fcf8d720f13fcfe139720906988 (diff)
Fix panic on absolute symlink
Diffstat (limited to 'cryptfs')
-rw-r--r--cryptfs/cryptfs_names.go7
1 files changed, 6 insertions, 1 deletions
diff --git a/cryptfs/cryptfs_names.go b/cryptfs/cryptfs_names.go
index 3dfcae9..c4f2a36 100644
--- a/cryptfs/cryptfs_names.go
+++ b/cryptfs/cryptfs_names.go
@@ -52,7 +52,6 @@ func (be *CryptFS) encryptName(plainName string) string {
cbc.CryptBlocks(bin, bin)
cipherName64 := base64.URLEncoding.EncodeToString(bin)
-
return cipherName64
}
@@ -70,6 +69,12 @@ func (be *CryptFS) translatePath(path string, op bool) (string, error) {
var translatedParts []string
parts := strings.Split(path, "/")
for _, part := range parts {
+ if part == "" {
+ // This happens on "/foo/bar/" on the front and on the end.
+ // Don't panic.
+ translatedParts = append(translatedParts, "")
+ continue
+ }
var newPart string
if op == ENCRYPT {
newPart = be.encryptName(part)