quartz: Remove while { } while construct.
Thanks to Andrew Talbot for spotting this.
This commit is contained in:
parent
619b9671d1
commit
55f3ba9dc0
|
@ -85,7 +85,7 @@ static HRESULT ForwardCmdSeek( PCRITICAL_SECTION crit_sect, IBaseFilter* from, S
|
|||
}
|
||||
IPin_Release( pin );
|
||||
}
|
||||
} while (hr == S_OK);
|
||||
}
|
||||
if (foundend && allnotimpl)
|
||||
hr = E_NOTIMPL;
|
||||
else
|
||||
|
|
|
@ -120,7 +120,8 @@ static HRESULT SendFurther( IPin *from, SendPinFunc fnMiddle, LPVOID arg, SendPi
|
|||
}
|
||||
IPin_Release( pin );
|
||||
}
|
||||
} while (hr == S_OK);
|
||||
}
|
||||
|
||||
if (!foundend)
|
||||
hr = hr_return;
|
||||
else if (fnEnd) {
|
||||
|
|
Loading…
Reference in New Issue