diff options
author | Vincent Richard <[email protected]> | 2014-04-17 20:19:58 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2014-04-17 20:19:58 +0000 |
commit | 45f52aeb2f178875c947e764428a9cc364f66606 (patch) | |
tree | 91d6dd5aad65bd23b150e4b9384d934c6c4cc053 | |
parent | Do not check for SSL handle validity in handshake() as it is initialized a fe... (diff) | |
parent | recursively create all parent directories if they do not exist on Windows (diff) | |
download | vmime-45f52aeb2f178875c947e764428a9cc364f66606.tar.gz vmime-45f52aeb2f178875c947e764428a9cc364f66606.zip |
Merge pull request #82 from NPU/master
recursively create all parent directories if they do not exist on Windows
-rw-r--r-- | src/vmime/platforms/windows/windowsFile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vmime/platforms/windows/windowsFile.cpp b/src/vmime/platforms/windows/windowsFile.cpp index 0ab90b16..5ecafa58 100644 --- a/src/vmime/platforms/windows/windowsFile.cpp +++ b/src/vmime/platforms/windows/windowsFile.cpp @@ -352,7 +352,7 @@ void windowsFile::createDirectoryImpl(const vmime::utility::file::path& fullPath { const vmime::string nativePath = windowsFileSystemFactory::pathToStringImpl(path); - windowsFile tmp(fullPath); + windowsFile tmp(path); if (tmp.isDirectory()) return; |