shdocvw: Remove unneeded address-of operators from array name.
This commit is contained in:
parent
bc8d8e5211
commit
9814ca9859
|
@ -791,7 +791,7 @@ HRESULT go_home(DocHost *This)
|
|||
return navigate_url(This, wszAboutBlank, NULL, NULL, NULL, NULL);
|
||||
|
||||
size = sizeof(wszPageName);
|
||||
res = RegQueryValueExW(hkey, wszStartPage, NULL, &type, (LPBYTE)&wszPageName, &size);
|
||||
res = RegQueryValueExW(hkey, wszStartPage, NULL, &type, (LPBYTE)wszPageName, &size);
|
||||
RegCloseKey(hkey);
|
||||
if (res != ERROR_SUCCESS || type != REG_SZ)
|
||||
return navigate_url(This, wszAboutBlank, NULL, NULL, NULL, NULL);
|
||||
|
|
Loading…
Reference in New Issue