Skip to content
Snippets Groups Projects
Commit 4fc52d13 authored by brad kittenbrink's avatar brad kittenbrink
Browse files

Fix for errors intializing the locale on unrecognized versions of windows (like windows 7)

parent 429bd9b5
No related branches found
No related tags found
No related merge requests found
...@@ -128,8 +128,16 @@ LLOSInfo::LLOSInfo() : ...@@ -128,8 +128,16 @@ LLOSInfo::LLOSInfo() :
mOSStringSimple = "Microsoft Windows Vista "; mOSStringSimple = "Microsoft Windows Vista ";
else mOSStringSimple = "Microsoft Windows Vista Server "; else mOSStringSimple = "Microsoft Windows Vista Server ";
} }
else if(osvi.dwMajorVersion == 6 && osvi.dwMinorVersion == 1)
{
if(osvi.wProductType == VER_NT_WORKSTATION)
mOSStringSimple = "Microsoft Windows 7 ";
else mOSStringSimple = "Microsoft Windows 7 Server ";
}
else // Use the registry on early versions of Windows NT. else // Use the registry on early versions of Windows NT.
{ {
mOSStringSimple = "Microsoft Windows (unrecognized) ";
HKEY hKey; HKEY hKey;
WCHAR szProductType[80]; WCHAR szProductType[80];
DWORD dwBufLen; DWORD dwBufLen;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment