Commit 7f6e677d authored by Alexandre Julliard's avatar Alexandre Julliard

quartz: Make sure the preferred allocator pointer is initialized.

parent 5a7dba5a
...@@ -199,6 +199,7 @@ static HRESULT PullPin_Init(const IPinVtbl *PullPin_Vtbl, const PIN_INFO * pPinI ...@@ -199,6 +199,7 @@ static HRESULT PullPin_Init(const IPinVtbl *PullPin_Vtbl, const PIN_INFO * pPinI
pPinImpl->fnDone = pDone; pPinImpl->fnDone = pDone;
pPinImpl->fnPreConnect = NULL; pPinImpl->fnPreConnect = NULL;
pPinImpl->pAlloc = NULL; pPinImpl->pAlloc = NULL;
pPinImpl->prefAlloc = NULL;
pPinImpl->pReader = NULL; pPinImpl->pReader = NULL;
pPinImpl->hThread = NULL; pPinImpl->hThread = NULL;
pPinImpl->hEventStateChanged = CreateEventW(NULL, TRUE, TRUE, NULL); pPinImpl->hEventStateChanged = CreateEventW(NULL, TRUE, TRUE, NULL);
......
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