Changeset 21537


Ignore:
Timestamp:
Dec 29, 2010, 4:11:05 PM (14 years ago)
Author:
dmik
Message:

kernel32: When checking for TZ, use RegOpenKey instead of RegCreateKey to check if the previous TZI value is present.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/kernel32/initsystem.cpp

    r21535 r21537  
    133133    const char *tz = getenv("TZ");
    134134    if (tz == NULL) {
    135         if (RegCreateKeyA(HKEY_LOCAL_MACHINE,
    136                           "SYSTEM\\CurrentControlSet\\Control\\TimeZoneInformation",
    137                           &hkey) == ERROR_SUCCESS) {
     135        if (RegOpenKeyA(HKEY_LOCAL_MACHINE,
     136                        "SYSTEM\\CurrentControlSet\\Control\\TimeZoneInformation",
     137                        &hkey) == ERROR_SUCCESS) {
    138138            // use the last value
    139139            RegCloseKey(hkey);
Note: See TracChangeset for help on using the changeset viewer.