commit | 84a39b4f636fe84d0470ac60b4182b384842c971 | [log] [tgz] |
---|---|---|
author | Paul Chitescu <paulc@voip.null.ro> | Wed May 11 04:45:59 2011 +0300 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed May 11 14:56:49 2011 +0200 |
tree | 426b93c1b32bfcab2d769a226f6ecc7799b2a190 | |
parent | 8a529d60e285308023bc56e7300a2a864289ae60 [diff] |
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;