[clang-tidy] Don't duplicate the leading slash.

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@243265 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alexander Kornienko 2015-07-27 13:07:50 +00:00
Родитель 6e44d3b7e5
Коммит 33bc520278
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -29,7 +29,7 @@ static std::string cleanPath(StringRef Path) {
// Drop the last component.
NewPath.resize(llvm::sys::path::parent_path(NewPath).size());
} else {
if (!NewPath.empty())
if (!NewPath.empty() && !NewPath.endswith("/"))
NewPath += '/';
NewPath += *I;
}