9 Jul
2025
9 Jul
'25
10:53 a.m.
Nikolay Sivov (@nsivov) commented about dlls/hhctrl.ocx/help.c:
}
- if (lstrcmpiW(buf, url) > 0) + index = wcsstr(url, L"::/"); + + if (index) + ActivateContentTopic(info->tabs[TAB_CONTENTS].hwnd, index + 3, info->content); /* skip over ::/ */ + + SysFreeString(url); +} + +static HRESULT WINAPI WebBrowserEvents2_QueryInterface(IDispatch *iface, REFIID riid, void **v) +{ + *v = NULL; + + if(IsEqualGUID(&IID_IDispatch, riid))
This should include IID_IUnknown too. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8526#note_109304