diff --git a/src/FileUtils.cpp b/src/FileUtils.cpp index 102e5f5..cc30ec5 100644 --- a/src/FileUtils.cpp +++ b/src/FileUtils.cpp @@ -36,9 +36,18 @@ std::string getFullPathForFSClient(FSClient *pClient, const char *path) { } void setWorkingDirForFSClient(FSClient *client, const char *path) { + if (!path) { + DEBUG_FUNCTION_LINE_WARN("Path was NULL"); + return; + } std::lock_guard workingDirLock(workingDirMutexFS); - workingDirsFS[client] = path; + std::string cwd(path); + if (cwd.empty() || cwd.back() != '/') { + cwd.push_back('/'); + } + + workingDirsFS[client] = cwd; OSMemoryBarrier(); }