summaryrefslogtreecommitdiff
path: root/zen/file_path.cpp
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-08-03 08:51:28 -0400
committerB. Stack <bgstack15@gmail.com>2022-08-03 08:51:28 -0400
commit94e0c9205e6049c6b3295145af7fd39156e77543 (patch)
treec36c0f0c5fab7aa60432e9e1d32ba5fdfabeb55e /zen/file_path.cpp
parentMerge branch '11.22' into 'master' (diff)
downloadFreeFileSync-94e0c9205e6049c6b3295145af7fd39156e77543.tar.gz
FreeFileSync-94e0c9205e6049c6b3295145af7fd39156e77543.tar.bz2
FreeFileSync-94e0c9205e6049c6b3295145af7fd39156e77543.zip
add upstream 11.23
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