dmime: Ignore badly formed wave if format and data have been found.

This commit is contained in:
Rémi Bernon 2023-10-26 14:38:06 +02:00 committed by Alexandre Julliard
parent bff7301699
commit 17416be982

View file

@ -167,6 +167,7 @@ static HRESULT parse_wave_chunk(struct wave *This, IStream *stream, struct chunk
if (FAILED(hr)) break;
}
if (This->format && This->data) return S_OK;
return hr;
}