Merge pull request #6018 from dtzWill/fix/issue-6017

canonPath: fix missing slash when resolving links
This commit is contained in:
Eelco Dolstra
2022-01-30 12:32:02 +01:00
committed by GitHub
+1 -1
View File
@@ -147,7 +147,7 @@ Path canonPath(PathView path, bool resolveSymlinks)
path = {};
} else {
s += path.substr(0, slash);
path = path.substr(slash + 1);
path = path.substr(slash);
}
/* If s points to a symlink, resolve it and continue from there */