Chris Robinson : quartz: Use the proper CLSID when creating the IFilterMapper2 interface.
Module: wine Branch: master Commit: 3f089b4424f6af05e997b21b8eca43a7a3f07cf9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3f089b4424f6af05e997b21b8e... Author: Chris Robinson <chris.kcat(a)gmail.com> Date: Sat Mar 3 00:22:59 2007 -0800 quartz: Use the proper CLSID when creating the IFilterMapper2 interface. --- dlls/quartz/filtergraph.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index 36767a0..db8f5c3 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -4517,7 +4517,7 @@ HRESULT FilterGraph_create(IUnknown *pUnkOuter, LPVOID *ppObj) InitializeCriticalSection(&fimpl->cs); fimpl->nItfCacheEntries = 0; - hr = CoCreateInstance(&CLSID_FilterMapper, NULL, CLSCTX_INPROC_SERVER, &IID_IFilterMapper2, (LPVOID*)&fimpl->pFilterMapper2); + hr = CoCreateInstance(&CLSID_FilterMapper2, NULL, CLSCTX_INPROC_SERVER, &IID_IFilterMapper2, (LPVOID*)&fimpl->pFilterMapper2); if (FAILED(hr)) { ERR("Unable to create filter mapper (%x)\n", hr); return hr;
participants (1)
-
Alexandre Julliard