summaryrefslogtreecommitdiff
path: root/zen/file_path.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/file_path.cpp')
-rw-r--r--zen/file_path.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/zen/file_path.cpp b/zen/file_path.cpp
index 68137b90..716dd8de 100644
--- a/zen/file_path.cpp
+++ b/zen/file_path.cpp
@@ -100,6 +100,7 @@ Zstring zen::appendPath(const Zstring& basePath, const Zstring& relPath)
if (relPath.empty())
return basePath; //with or without path separator, e.g. C:\ or C:\folder
+ //assert(!basePath.empty());
if (basePath.empty()) //basePath might be a relative path, too!
return relPath;
bgstack15