strmbase: Use correct *ppv (Coverity).

oldstable
Marcus Meissner 2012-04-16 08:53:47 +02:00 committed by Alexandre Julliard
parent 25ed3b9572
commit b964758543
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(strmbase_qc);
HRESULT QualityControlImpl_Create(IPin *input, IBaseFilter *self, QualityControlImpl **ppv) {
QualityControlImpl *This;
*ppv = HeapAlloc(GetProcessHeap(),0,sizeof(QualityControlImpl));
if (!ppv)
if (!*ppv)
return E_OUTOFMEMORY;
This = *ppv;
This->input = input;