[2/2] quartz: Use the proper CLSID when creating the IFilterMapper2 interface

Chris Robinson chris.kcat at gmail.com
Sat Mar 3 03:25:28 CST 2007


-------------- next part --------------
From 1e993bf224d49753a5b75a700969873aa48f8433 Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat at gmail.com>
Date: Sat, 3 Mar 2007 00:22:59 -0800
Subject: 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 059540e..894c66f 100644
--- a/dlls/quartz/filtergraph.c
+++ b/dlls/quartz/filtergraph.c
@@ -4518,7 +4518,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;
-- 
1.4.4.4



More information about the wine-patches mailing list