Commit 84a39b4f authored by Paul Chitescu's avatar Paul Chitescu Committed by Alexandre Julliard

qcap: Initialize to NULL the content of ppPin, not the pointer itself.

parent 8a529d60
...@@ -726,7 +726,7 @@ VfwPin_Construct( IBaseFilter * pBaseFilter, LPCRITICAL_SECTION pCritSec, ...@@ -726,7 +726,7 @@ VfwPin_Construct( IBaseFilter * pBaseFilter, LPCRITICAL_SECTION pCritSec,
PIN_INFO piOutput; PIN_INFO piOutput;
HRESULT hr; HRESULT hr;
ppPin = NULL; *ppPin = NULL;
piOutput.dir = PINDIR_OUTPUT; piOutput.dir = PINDIR_OUTPUT;
piOutput.pFilter = pBaseFilter; piOutput.pFilter = pBaseFilter;
......
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