diff options
Diffstat (limited to '')
-rw-r--r-- | src/fs/Traits.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fs/Traits.cxx b/src/fs/Traits.cxx index 934a9e2d0..3e874a224 100644 --- a/src/fs/Traits.cxx +++ b/src/fs/Traits.cxx @@ -71,6 +71,10 @@ GetParentPathImpl(typename Traits::const_pointer p) return typename Traits::string("."); if (sep == p) return typename Traits::string(p, p + 1); +#ifdef WIN32 + if (Traits::IsDrive(p) && sep == p + 2) + return typename Traits::string(p, p + 3); +#endif return typename Traits::string(p, sep); } |