Fixes a bug when iterating on paths

This fixes the incorrect implementation of iterating on file/directory
paths.

Differential Review: http://llvm-reviews.chandlerc.com/D1277


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188183 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Tareq A. Siraj
2013-08-12 17:10:49 +00:00
parent 809313970f
commit 225396c2b5
2 changed files with 70 additions and 1 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ namespace {
return path.substr(0, 1);
// * {file,directory}name
size_t end = path.find_first_of(separators, 2);
size_t end = path.find_first_of(separators);
return path.substr(0, end);
}