Skip to content

Commit

Permalink
Fixed bug CORE-2151 : Temp directory with space in the middle wrongly…
Browse files Browse the repository at this point in the history
… truncated from the rightmost space
  • Loading branch information
hvlad committed Oct 25, 2008
1 parent b914aa4 commit f6398ca
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/common/config/dir_list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,13 +260,6 @@ const
void TempDirectoryList::initTemp()
{
initialize(true);

// Iterate through directories to parse them
for (size_t i = 0; i < getCount(); i++) {
PathName dir = (*this)[i];
size_t pos = dir.rfind(" ");
(*this)[i] = ParsedPath(dir.substr(0, pos));
}
}

const PathName TempDirectoryList::getConfigString() const
Expand Down

0 comments on commit f6398ca

Please sign in to comment.