msxml3: Correct SAXXMLReader_create.
This commit is contained in:
parent
5c93f092c8
commit
b478ec0027
|
@ -362,7 +362,10 @@ HRESULT SAXXMLReader_create(IUnknown *pUnkOuter, LPVOID *ppObj)
|
||||||
reader->lpVtbl = &saxreader_vtbl;
|
reader->lpVtbl = &saxreader_vtbl;
|
||||||
reader->ref = 1;
|
reader->ref = 1;
|
||||||
|
|
||||||
|
*ppObj = &reader->lpVtbl;
|
||||||
|
|
||||||
TRACE("returning iface %p\n", *ppObj);
|
TRACE("returning iface %p\n", *ppObj);
|
||||||
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue