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

terminating / when setDirectory is called.

llvm-svn: 18886
This commit is contained in:
Reid Spencer 2004-12-13 07:51:52 +00:00
parent a85abc23d5
commit 790100674a
1 changed files with 1 additions and 1 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;