mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
[SHELL32:WINE] Improve ROS-specific registry opening in SHRestricted() (#4275)
This commit is contained in:
parent
9513d18f93
commit
ea3e66d748
1 changed files with 2 additions and 2 deletions
|
@ -1377,10 +1377,10 @@ DWORD WINAPI SHRestricted (RESTRICTIONS policy)
|
|||
if (RegOpenKeyA(HKEY_CURRENT_USER, regstr, &xhkey) == ERROR_SUCCESS)
|
||||
#else // FIXME: Actually this *MUST* use shlwapi!SHRestrictionLookup()
|
||||
// See http://www.geoffchappell.com/studies/windows/shell/shell32/api/util/shrestricted.htm
|
||||
retval = RegOpenKeyA(HKEY_LOCAL_MACHINE, regstr, &xhkey);
|
||||
retval = RegOpenKeyExA(HKEY_LOCAL_MACHINE, regstr, 0, KEY_READ, &xhkey);
|
||||
if (retval != ERROR_SUCCESS)
|
||||
{
|
||||
retval = RegOpenKeyA(HKEY_CURRENT_USER, regstr, &xhkey);
|
||||
retval = RegOpenKeyExA(HKEY_CURRENT_USER, regstr, 0, KEY_READ, &xhkey);
|
||||
if (retval != ERROR_SUCCESS)
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue