8 Jul
2025
8 Jul
'25
4:30 p.m.
Nikolay Sivov (@nsivov) commented about dlls/hhctrl.ocx/help.c:
+ 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(&DIID_DWebBrowserEvents2, riid) || IsEqualGUID(&IID_IDispatch, riid)) { + *v = iface; + return S_OK; + } Normally this should AddRef().
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8526#note_109136