mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2024-11-23 23:21:08 +01:00
GUI: Attempt to fix internal compiler error
This commit is contained in:
parent
77c6a8c23e
commit
2188f0ac87
@ -2542,8 +2542,8 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
HKEY hKey = NULL;
|
HKEY hKey = NULL;
|
||||||
wchar_t* bIsHKLM = wcsstr(section, L"HKEY_LOCAL_MACHINE");
|
wchar_t* matchHKLM = wcsstr(section, L"HKEY_LOCAL_MACHINE");
|
||||||
bIsHKLM = !bIsHKLM ? NULL : ((bIsHKLM - section) < 3);
|
BOOL bIsHKLM = matchHKLM && (matchHKLM - section) < 3;
|
||||||
DWORD dwDisposition;
|
DWORD dwDisposition;
|
||||||
DWORD dwSize = sizeof(DWORD);
|
DWORD dwSize = sizeof(DWORD);
|
||||||
DWORD value = FALSE;
|
DWORD value = FALSE;
|
||||||
|
Loading…
Reference in New Issue
Block a user