17 Jan
2024
17 Jan
'24
10:57 p.m.
Rémi Bernon (@rbernon) commented about dlls/dmime/audiopath.c:
path_config_IDirectMusicObject_ParseDescriptor };
+static HRESULT parse_pchannel_to_buffers_list(struct audio_path_port_config *This, IStream *stream, const struct chunk_entry *pchl) +{ + struct chunk_entry chunk = { .parent = pchl }; + struct audio_path_pchannel_to_buffer *pchannel_to_buffer = NULL; + DMUS_IO_PCHANNELTOBUFFER_HEADER header; + ULONG bytes, i; + HRESULT hr; + + while ((hr = stream_next_chunk(stream, &chunk)) == S_OK) {
```suggestion:-0+0 while ((hr = stream_next_chunk(stream, &chunk)) == S_OK) { ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4852#note_57826