shdocvw: Remove unneeded address-of operators from array name.

This commit is contained in:
Andrew Talbot 2008-12-08 18:53:39 +00:00 committed by Alexandre Julliard
parent bc8d8e5211
commit 9814ca9859
1 changed files with 1 additions and 1 deletions

View File

@ -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);