20 Jul
2024
20 Jul
'24
1:24 a.m.
Fabian Maurer (@DarkShadow44) commented about dlls/shell32/enumobjects.c:
+ HRESULT hr = S_OK; + + TRACE("(%p, %s, %p)\n", outer, debugstr_guid(iid), obj); + + if (outer) + return CLASS_E_NOAGGREGATION; + + if (!(This = heap_alloc(sizeof(*This)))) + return E_OUTOFMEMORY; + + This->IEnumObjects_iface.lpVtbl = &eobjlvt; + This->ref = 1; + list_init(&This->objls); + This->current = NULL; + + I'd remove the duplicate empty line.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6130#note_76710