quartz: Remove while { } while construct.

Thanks to Andrew Talbot for spotting this.
This commit is contained in:
Maarten Lankhorst 2008-04-08 12:24:33 -07:00 committed by Alexandre Julliard
parent 619b9671d1
commit 55f3ba9dc0
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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) {