Commit 8377e274 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

strmbase: Removed superflous NULL check (Coverity).

parent 8521ebe7
......@@ -130,8 +130,7 @@ HRESULT WINAPI OutputQueue_Destroy(OutputQueue *pOutputQueue)
DeleteCriticalSection(&pOutputQueue->csQueue);
CloseHandle(pOutputQueue->hProcessQueue);
if (pOutputQueue->SampleList)
HeapFree(GetProcessHeap(),0,pOutputQueue->SampleList);
HeapFree(GetProcessHeap(),0,pOutputQueue->SampleList);
IPin_Release((IPin*)pOutputQueue->pInputPin);
HeapFree(GetProcessHeap(),0,pOutputQueue);
......
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