aboutsummaryrefslogtreecommitdiff
path: root/include/Path.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/Path.hpp')
-rw-r--r--include/Path.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Path.hpp b/include/Path.hpp
index 19c8eb9..571fb9e 100644
--- a/include/Path.hpp
+++ b/include/Path.hpp
@@ -39,7 +39,7 @@ namespace QuickMedia {
Path parent() {
size_t slash_index = data.rfind('/');
- if(slash_index != std::string::npos || slash_index == 0)
+ if(slash_index != std::string::npos && slash_index > 0)
return Path(data.substr(0, slash_index));
return Path("/");
}