Fix a bug where "." or any single character file name doesn't get the

terminating / when setDirectory is called.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18886 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-12-13 07:51:52 +00:00
parent 3d595cba33
commit b0e1887014
2 changed files with 2 additions and 2 deletions

View File

@ -300,7 +300,7 @@ Path::setDirectory(const std::string& a_path) {
path = a_path;
FlipBackSlashes(path);
size_t last = a_path.size() -1;
if (last != 0 && a_path[last] != '/')
if (a_path[last] != '/')
path += '/';
if (!isValid()) {
path = save.path;

View File

@ -300,7 +300,7 @@ Path::setDirectory(const std::string& a_path) {
path = a_path;
FlipBackSlashes(path);
size_t last = a_path.size() -1;
if (last != 0 && a_path[last] != '/')
if (a_path[last] != '/')
path += '/';
if (!isValid()) {
path = save.path;