mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[SHELL32]: Fix a regression I introduced in r71804.
svn path=/trunk/; revision=71805
This commit is contained in:
parent
35eeb37cd4
commit
d13229363c
1 changed files with 7 additions and 4 deletions
|
@ -859,15 +859,18 @@ DWORD WINAPI SHRestricted (RESTRICTIONS policy)
|
|||
lstrcatA(regstr, p->appstr);
|
||||
|
||||
/* return 0 and don't set the cache if any registry errors occur */
|
||||
retval = 0;
|
||||
#ifndef __REACTOS__
|
||||
retval = 0;
|
||||
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 = RegOpenKeyA(HKEY_LOCAL_MACHINE, regstr, &xhkey);
|
||||
if (retval != ERROR_SUCCESS)
|
||||
{
|
||||
retval = RegOpenKeyA(HKEY_CURRENT_USER, regstr, &xhkey);
|
||||
if (retval != ERROR_SUCCESS)
|
||||
retval = RegOpenKeyA(HKEY_CURRENT_USER, regstr, &xhkey);
|
||||
if (retval == ERROR_SUCCESS)
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
{
|
||||
if (RegQueryValueExA(xhkey, p->keystr, NULL, NULL, (LPBYTE)&retval, &datsize) == ERROR_SUCCESS)
|
||||
|
|
Loading…
Reference in a new issue