Jeffrey Smith (@whydoubt) commented about dlls/mmdevapi/devicetopology.c:
- DT_AddRef,
- DT_Release,
- DT_GetConnectorCount,
- DT_GetConnector,
- DT_GetSubunitCount,
- DT_GetSubunit,
- DT_GetPartById,
- DT_GetDeviceId,
- DT_GetSignalPath,
+};
+HRESULT DeviceTopology_Create(IMMDevice *device, IDeviceTopology **ppv) +{
- struct device_topology *This;
- This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*This));
```suggestion:-0+0 This = calloc(1, sizeof(*This)); ```