17 Jan
2024
17 Jan
'24
10:57 p.m.
Rémi Bernon (@rbernon) commented about dlls/dmime/audiopath.c:
+ } + + if (FAILED(hr)) { + port_config_destroy(port_config); + return hr; + } + list_add_tail(&This->port_config_entries, &port_config->entry); + return S_OK; +} + +static HRESULT parse_port_configs_list(struct audio_path_config *This, IStream *stream, const struct chunk_entry *pcsl) +{ + struct chunk_entry chunk = { .parent = pcsl }; + HRESULT hr; + + while ((hr = stream_next_chunk(stream, &chunk)) == S_OK) {
while ((hr = stream_next_chunk(stream, &chunk)) == S_OK)
{
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/4852#note_57828