quartz: Remove redundant comparison.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
b7987c6b32
commit
8273fc88c9
|
@ -1115,8 +1115,7 @@ static HRESULT AVISplitter_InputPin_PreConnect(IPin * iface, IPin * pConnectPin,
|
||||||
pos += sizeof(RIFFCHUNK) + list.cb;
|
pos += sizeof(RIFFCHUNK) + list.cb;
|
||||||
hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(list), (BYTE *)&list);
|
hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(list), (BYTE *)&list);
|
||||||
}
|
}
|
||||||
while (hr == S_OK && (list.fcc != FOURCC_LIST ||
|
while (hr == S_OK && (list.fcc != FOURCC_LIST || list.fccListType != listtypeAVIMOVIE));
|
||||||
(list.fcc == FOURCC_LIST && list.fccListType != listtypeAVIMOVIE)));
|
|
||||||
|
|
||||||
if (hr != S_OK)
|
if (hr != S_OK)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue