18 Nov
2024
18 Nov
'24
8:01 a.m.
Zhiyi Zhang (@zhiyi) commented about dlls/wintypes/propertyset.c:
IUnknown_AddRef( iface ); return S_OK; } + if (IsEqualGUID( iid, &IID_IObservableMap_HSTRING_IInspectable )) + { + *out = &impl->IObservableMap_HSTRING_IInspectable_iface; + IUnknown_AddRef( iface );
Let's use IUnknown_AddRef( *out ); instead of IUnknown_AddRef( iface ); here. Same for other places. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6766#note_87777