Commit 33b2f69c authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

quartz: Fix sample leak in file source on failure path.

parent 119d7caf
......@@ -1125,30 +1125,28 @@ static HRESULT WINAPI FileAsyncReader_WaitForNext(IAsyncReader * iface, DWORD dw
LeaveCriticalSection(&This->csList);
}
if (SUCCEEDED(hr) && !This->bFlushing)
if (SUCCEEDED(hr))
{
/* get any errors */
if (!GetOverlappedResult(This->hFile, &pDataRq->ovl, &dwBytes, FALSE))
if (!This->bFlushing && !GetOverlappedResult(This->hFile, &pDataRq->ovl, &dwBytes, FALSE))
hr = HRESULT_FROM_WIN32(GetLastError());
}
if (SUCCEEDED(hr))
{
IMediaSample_SetActualDataLength(pDataRq->pSample, dwBytes);
/* Return the sample no matter what so it can be destroyed */
*ppSample = pDataRq->pSample;
*pdwUser = pDataRq->dwUserData;
if (This->bFlushing)
{
hr = VFW_E_WRONG_STATE;
dwBytes = 0;
}
IMediaSample_SetActualDataLength(pDataRq->pSample, dwBytes);
}
/* no need to close event handle since we will close it when the pin is destroyed */
CoTaskMemFree(pDataRq);
/* Return the sample if flushing so it can be destroyed */
if (This->bFlushing && SUCCEEDED(hr))
{
hr = VFW_E_WRONG_STATE;
IMediaSample_SetActualDataLength(pDataRq->pSample, 0);
}
TRACE("-- %x\n", hr);
return hr;
}
......
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