1 Mar
2023
1 Mar
'23
9:17 p.m.
Esme Povirk (@madewokherd) commented about dlls/uiautomationcore/uia_com_client.c:
static HRESULT WINAPI uia_iface_get_ControlViewCondition(IUIAutomation6 *iface, IUIAutomationCondition **out_condition) { - FIXME("%p, %p: stub\n", iface, out_condition); - return E_NOTIMPL; + IUIAutomationCondition *prop_cond, *not_cond; + HRESULT hr; + VARIANT v; + + TRACE("%p, %p\n", iface, out_condition); + + *out_condition = NULL; + + V_VT(&v) = VT_BOOL; + V_BOOL(&v) = VARIANT_FALSE;
v should probably be initialized to 0, or VariantInit should be called first. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/2303#note_25907