quartz: Fix return value for StdMediaSample2_GetTime in error cases.

This commit is contained in:
Gerald Pfeifer 2010-04-24 23:00:54 +02:00 committed by Alexandre Julliard
parent ba9b207274
commit 6c016ac039

View file

@ -534,7 +534,7 @@ static HRESULT WINAPI StdMediaSample2_GetTime(IMediaSample2 * iface, REFERENCE_T
hr = S_OK;
}
return S_OK;
return hr;
}
static HRESULT WINAPI StdMediaSample2_SetTime(IMediaSample2 * iface, REFERENCE_TIME * pStart, REFERENCE_TIME * pEnd)