Fix missing path in mkdir() exception

fixes #10748
This commit is contained in:
Michael Friedrich 2015-11-30 10:37:57 +01:00
parent ab9218e801
commit 2a5a9d2f4b
1 changed files with 2 additions and 1 deletions

View File

@ -707,7 +707,8 @@ void Utility::MkDir(const String& path, int flags)
#endif /* _WIN32 */
BOOST_THROW_EXCEPTION(posix_error()
<< boost::errinfo_api_function("mkdir")
<< boost::errinfo_errno(errno));
<< boost::errinfo_errno(errno)
<< boost::errinfo_file_name(path));
}
}