Commit e0b7aadb authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

hlink: Return value returned by IHlinkTarget_Navigate in IHlink_fnNavigate.

parent f8e0d2f5
......@@ -503,7 +503,7 @@ static HRESULT WINAPI IHlink_fnNavigate(IHlink* iface, DWORD grfHLNF, LPBC pbc,
if (r == S_OK)
{
IHlinkTarget_SetBrowseContext(target, phbc);
IHlinkTarget_Navigate(target, grfHLNF, This->Location);
r = IHlinkTarget_Navigate(target, grfHLNF, This->Location);
IHlinkTarget_Release(target);
}
else
......
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