Alexandre Julliard : quartz: Make sure the preferred allocator pointer is initialized.
Module: wine Branch: master Commit: 7f6e677d5ad5048dd2f1defb50f64928c380606e URL: http://source.winehq.org/git/wine.git/?a=commit;h=7f6e677d5ad5048dd2f1defb50... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Fri May 20 10:28:21 2011 +0200 quartz: Make sure the preferred allocator pointer is initialized. --- dlls/quartz/pin.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/quartz/pin.c b/dlls/quartz/pin.c index 2a3b2d1..af26a6b 100644 --- a/dlls/quartz/pin.c +++ b/dlls/quartz/pin.c @@ -199,6 +199,7 @@ static HRESULT PullPin_Init(const IPinVtbl *PullPin_Vtbl, const PIN_INFO * pPinI pPinImpl->fnDone = pDone; pPinImpl->fnPreConnect = NULL; pPinImpl->pAlloc = NULL; + pPinImpl->prefAlloc = NULL; pPinImpl->pReader = NULL; pPinImpl->hThread = NULL; pPinImpl->hEventStateChanged = CreateEventW(NULL, TRUE, TRUE, NULL);
participants (1)
-
Alexandre Julliard