Commit 8273fc88 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

quartz: Remove redundant comparison.

parent b7987c6b
......@@ -1115,8 +1115,7 @@ static HRESULT AVISplitter_InputPin_PreConnect(IPin * iface, IPin * pConnectPin,
pos += sizeof(RIFFCHUNK) + list.cb;
hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(list), (BYTE *)&list);
}
while (hr == S_OK && (list.fcc != FOURCC_LIST ||
(list.fcc == FOURCC_LIST && list.fccListType != listtypeAVIMOVIE)));
while (hr == S_OK && (list.fcc != FOURCC_LIST || list.fccListType != listtypeAVIMOVIE));
if (hr != S_OK)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment