quartz: Break loop on error in ACMWrapper.

This commit is contained in:
Chris Robinson 2007-04-03 06:53:22 -07:00 committed by Alexandre Julliard
parent 243351d223
commit b7a4405d0a

View file

@ -81,7 +81,7 @@ static HRESULT ACMWrapper_ProcessSampleData(TransformFilterImpl* pTransformFilte
return hr;
}
while(!stop)
while(hr == S_OK && !stop)
{
DWORD rem_buf = This->max_size - This->current_size;
DWORD rem_smp = size - offset;