blob: 9ee9e018ff28c3531067080c5bfbd5b0de4e1838 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/src/common/mm_io.cpp 2012-07-08 20:06:02.000000000 +0200
+++ b/src/common/mm_io.cpp 2012-07-21 11:59:59.000000000 +0200
@@ -147,7 +147,7 @@
void
mm_file_io_c::prepare_path(const std::string &path) {
boost::filesystem::path directory = boost::filesystem::path(path).parent_path();
- if (boost::filesystem::exists(directory))
+ if (directory.empty() || boost::filesystem::exists(directory))
return;
boost::system::error_code error_code;
|