aboutsummaryrefslogtreecommitdiff
path: root/src/Storage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Storage.cpp')
-rw-r--r--src/Storage.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Storage.cpp b/src/Storage.cpp
index 50d1ffd..9a1c492 100644
--- a/src/Storage.cpp
+++ b/src/Storage.cpp
@@ -309,7 +309,8 @@ namespace QuickMedia {
char *env = getenv("PATH");
std::unordered_set<std::string> paths;
string_split(env, ':', [&paths](const char *str, size_t size) {
- paths.insert(std::string(str, size));
+ if(size > 0)
+ paths.insert(std::string(str, size));
return true;
});