提交 75af6ce4 编写于 作者: A Adam Barth

Merge pull request #588 from abarth/fix_abs_paths

sky_snapshot should work with absolute paths
......@@ -25,8 +25,10 @@ std::string Fetch(const std::string& url) {
base::FilePath SimplifyPath(const base::FilePath& path) {
std::vector<base::FilePath::StringType> components;
path.GetComponents(&components);
base::FilePath result;
for (const auto& component : components) {
auto it = components.begin();
base::FilePath result(*it++);
for (; it != components.end(); it++) {
auto& component = *it;
if (component == base::FilePath::kCurrentDirectory)
continue;
if (component == base::FilePath::kParentDirectory)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册