Chris Robinson : quartz: Use the proper CLSID when creating the IFilterMapper2 interface.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Mar 5 06:23:18 CST 2007


Module: wine
Branch: master
Commit: 3f089b4424f6af05e997b21b8eca43a7a3f07cf9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3f089b4424f6af05e997b21b8eca43a7a3f07cf9

Author: Chris Robinson <chris.kcat at 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;




More information about the wine-cvs mailing list