Rémi Bernon (@rbernon) commented about dlls/dmime/audiopath.c:
/* IPersistStream */ static HRESULT WINAPI path_config_IPersistStream_Load(IPersistStream *iface, IStream *stream) { struct audio_path_config *This = impl_from_IPersistStream(iface);
- struct chunk_entry riff = {0}, chunk = {0};
- HRESULT hr = S_OK;
- FIXME("(%p, %p): Loading\n", This, stream);
- if (!stream)
return E_POINTER;
- FIXME("(%p, %p): Loading not implemented yet\n", This, stream);
- hr = stream_get_chunk(stream, &riff);
- if (FAILED(hr)) {
```suggestion:-0+0 if (FAILED(hr)) { ```