Commit 9814ca98 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

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

parent bc8d8e52
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment