Commit 55f3ba9d authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

quartz: Remove while { } while construct.

Thanks to Andrew Talbot for spotting this.
parent 619b9671
......@@ -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) {
......
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