diff --git a/dlls/quartz/parser.c b/dlls/quartz/parser.c index 15e01e8a822..e1f2c628fc3 100644 --- a/dlls/quartz/parser.c +++ b/dlls/quartz/parser.c @@ -223,9 +223,11 @@ static ULONG WINAPI Parser_Release(IBaseFilter * iface) static HRESULT WINAPI Parser_GetClassID(IBaseFilter * iface, CLSID * pClsid) { + ParserImpl *This = (ParserImpl *)iface; + TRACE("(%p)\n", pClsid); - *pClsid = CLSID_AviSplitter; + *pClsid = This->clsid; return S_OK; }