summaryrefslogtreecommitdiff
path: root/zen/long_path_prefix.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/long_path_prefix.h')
-rw-r--r--zen/long_path_prefix.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/zen/long_path_prefix.h b/zen/long_path_prefix.h
index d2289330..19b838ef 100644
--- a/zen/long_path_prefix.h
+++ b/zen/long_path_prefix.h
@@ -47,15 +47,6 @@ As used by GetModuleFileNameEx() and symlinks (FSCTL_GET_REPARSE_POINT):
-
-
-
-
-
-
-
-
-
//################## implementation ##################
//there are two flavors of long path prefix: one for UNC paths, one for regular paths
@@ -128,11 +119,11 @@ Zstring zen::ntPathToWin32Path(const Zstring& path) //noexcept
if (bufSize > 0)
{
std::vector<wchar_t> buf(bufSize);
- DWORD charsWritten = ::GetEnvironmentVariable(L"SystemRoot", //_In_opt_ LPCTSTR lpName,
+ const DWORD charsWritten = ::GetEnvironmentVariable(L"SystemRoot", //_In_opt_ LPCTSTR lpName,
&buf[0], //_Out_opt_ LPTSTR lpBuffer,
bufSize); //_In_ DWORD nSize
- if (charsWritten != 0 && charsWritten < bufSize)
+ if (0 < charsWritten && charsWritten < bufSize)
return replaceCpy(path, L"\\SystemRoot\\", appendSeparator(Zstring(&buf[0], charsWritten)), false);
}
}
bgstack15