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.