qcap: Initialize to NULL the content of ppPin, not the pointer itself.
diff --git a/dlls/qcap/vfwcapture.c b/dlls/qcap/vfwcapture.c
index 8997480..1138a64 100644
--- a/dlls/qcap/vfwcapture.c
+++ b/dlls/qcap/vfwcapture.c
@@ -726,7 +726,7 @@
     PIN_INFO piOutput;
     HRESULT hr;
 
-    ppPin = NULL;
+    *ppPin = NULL;
 
     piOutput.dir = PINDIR_OUTPUT;
     piOutput.pFilter = pBaseFilter;