diff --git a/src/utils/pathut.cpp b/src/utils/pathut.cpp index 3bca7390..9d39a5ef 100644 --- a/src/utils/pathut.cpp +++ b/src/utils/pathut.cpp @@ -364,6 +364,9 @@ string path_absolute(const string& is) return is; } string s = is; +#ifdef _WIN32 + path_slashize(s); +#endif if (!path_isabsolute(s)) { char buf[MAXPATHLEN]; if (!getcwd(buf, MAXPATHLEN)) {