diff options
author | Davor Kapsa <davor.kapsa@gmail.com> | 2019-10-11 06:38:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-11 06:38:26 +0200 |
commit | fec0663bb7a8ca8273a8f51480e183ef207d0e2a (patch) | |
tree | aebaed2d9e3c24fb18e15e2535af254c55e7181d /runsc | |
parent | 53960d48c7ecb9422b3cece2372060e434cb073e (diff) |
Set base to root
Diffstat (limited to 'runsc')
-rw-r--r-- | runsc/cmd/gofer.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runsc/cmd/gofer.go b/runsc/cmd/gofer.go index 7dfe00399..4c2fb80bf 100644 --- a/runsc/cmd/gofer.go +++ b/runsc/cmd/gofer.go @@ -423,6 +423,7 @@ func resolveSymlinksImpl(root, base, rel string, followCount uint) (string, erro path := filepath.Join(base, name) if !strings.HasPrefix(path, root) { // One cannot '..' their way out of root. + base = root continue } fi, err := os.Lstat(path) |