rsaenh/tests: Fix some test failures on W2K.

This commit is contained in:
Paul Vriens 2009-11-18 20:58:35 +01:00 committed by Alexandre Julliard
parent ca38b8b951
commit 8fe8d61a62
1 changed files with 7 additions and 1 deletions

View File

@ -72,9 +72,15 @@ static void uniquecontainer(char *unique)
HKEY hkey;
char guid[MAX_PATH];
DWORD size = MAX_PATH;
HRESULT ret;
/* Get the MachineGUID */
RegOpenKeyExA(HKEY_LOCAL_MACHINE, szCryptography, 0, KEY_READ | KEY_WOW64_64KEY, &hkey);
ret = RegOpenKeyExA(HKEY_LOCAL_MACHINE, szCryptography, 0, KEY_READ | KEY_WOW64_64KEY, &hkey);
if (ret == ERROR_ACCESS_DENIED)
{
/* Windows 2000 can't handle KEY_WOW64_64KEY */
RegOpenKeyA(HKEY_LOCAL_MACHINE, szCryptography, &hkey);
}
RegQueryValueExA(hkey, szMachineGuid, NULL, NULL, (LPBYTE)guid, &size);
RegCloseKey(hkey);