X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Fpath.cpp;h=703be2b404744cbe76515ca4ebf40c4226649267;hp=93805277749d96ed35cccaa86ecd130774f9174e;hb=105d334b3dc59b5d5def485e438d63e203805f2e;hpb=05f7e9b4c6f804102f261517c8ecdd338e1f67d3 diff --git a/source/fs/path.cpp b/source/fs/path.cpp index 9380527..703be2b 100644 --- a/source/fs/path.cpp +++ b/source/fs/path.cpp @@ -32,14 +32,14 @@ Path::Path(const char *p) void Path::init(const string &p) { + if(p.empty()) + return; string::size_type start = 0; - if(p[0]=='/' || p[0]=='\\') - add_component(string(1, DIRSEP)); - while(1) + while(startstart) - add_component(p.substr(start, slash-start)); + if(slash>start || start==0) + add_component(p.substr(start, max(slash-start, 1U))); if(slash==string::npos) break; start = slash+1; @@ -89,7 +89,7 @@ Path Path::operator/(const Path &p) const Path &Path::operator/=(const Path &p) { if(p.is_absolute()) - path = p.path; + *this = p; else { for(Iterator i=p.begin(); i!=p.end(); ++i) @@ -100,9 +100,7 @@ Path &Path::operator/=(const Path &p) void Path::add_component(const string &comp) { - if(comp.empty()) - ; - else if(comp.size()==1 && comp[0]==DIRSEP) + if(comp.size()==1 && (comp[0]=='/' || comp[0]=='\\')) { // Replace the path with the root directory #ifdef WIN32 @@ -115,7 +113,7 @@ void Path::add_component(const string &comp) else #endif { - path = comp; + path.assign(1, DIRSEP); separators.clear(); separators.push_back(0); }