diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-02-08 07:41:17 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-02-08 07:41:17 (GMT) |
commit | d94ddd8a072674f4fe2f68f46d9e6f8e91a821f4 (patch) | |
tree | 4505f007fa376fabd602f450b526a4748635179f /unix | |
parent | e7704f85aa81ff101952d41f121bb52631052981 (diff) | |
parent | d16daeb28a40a95fa54d322134a76c64023beda6 (diff) | |
download | tcl-d94ddd8a072674f4fe2f68f46d9e6f8e91a821f4.zip tcl-d94ddd8a072674f4fe2f68f46d9e6f8e91a821f4.tar.gz tcl-d94ddd8a072674f4fe2f68f46d9e6f8e91a821f4.tar.bz2 |
merge trunk
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixInit.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index f8acad5..1617cba 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -865,16 +865,17 @@ TclpSetVariables( #ifdef __CYGWIN__ unameOK = 1; if (!osInfoInitialized) { - HANDLE handle = LoadLibraryW(L"NTDLL"); - int(*getversion)(void *) = (int(*)(void *))GetProcAddress(handle, "RtlGetVersion"); - osInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW); - if (!getversion || getversion(&osInfo)) { - GetVersionExW(&osInfo); - } - if (handle) { - FreeLibrary(handle); - } - osInfoInitialized = 1; + HANDLE handle = LoadLibraryW(L"NTDLL"); + int(__stdcall *getversion)(void *) = + (int(__stdcall *)(void *))GetProcAddress(handle, "RtlGetVersion"); + osInfo.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW); + if (!getversion || getversion(&osInfo)) { + GetVersionExW(&osInfo); + } + if (handle) { + FreeLibrary(handle); + } + osInfoInitialized = 1; } GetSystemInfo(&sysInfo); |