Rémi Bernon (@rbernon) commented about dlls/cfgmgr32/main.c:
{hr = HRESULT_FROM_WIN32( GetLastError() );free( buf );goto done;}if (!dev_properties_append( (DEVPROPERTY **)&obj->pProperties, &obj->cPropertyCount, key, type, size, buf )){free( buf );hr = E_OUTOFMEMORY;goto done;}- }
+done:
- free( all_keys );
- if (hr != S_OK)
```suggestion:-0+0 if (FAILED(hr)) ```