msxml3: Correct SAXXMLReader_create.

oldstable
Alistair Leslie-Hughes 2008-03-26 14:40:01 +11:00 committed by Alexandre Julliard
parent 5c93f092c8
commit b478ec0027
1 changed files with 3 additions and 0 deletions

View File

@ -362,7 +362,10 @@ HRESULT SAXXMLReader_create(IUnknown *pUnkOuter, LPVOID *ppObj)
reader->lpVtbl = &saxreader_vtbl;
reader->ref = 1;
*ppObj = &reader->lpVtbl;
TRACE("returning iface %p\n", *ppObj);
return S_OK;
}