mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 13:27:35 +00:00
ole32: Re-structure OleCreate to match to order of calls that native does.
Get rid of hres1 since all failures are returned. Cleanup pUnk on failure and make sure to return NULL in ppvObj.
This commit is contained in:
parent
aaa26b2702
commit
ccb634fdee
1 changed files with 27 additions and 18 deletions
|
@ -2299,8 +2299,9 @@ HRESULT WINAPI OleCreate(
|
|||
LPSTORAGE pStg,
|
||||
LPVOID* ppvObj)
|
||||
{
|
||||
HRESULT hres, hres1;
|
||||
HRESULT hres;
|
||||
IUnknown * pUnk = NULL;
|
||||
IOleObject *pOleObject = NULL;
|
||||
|
||||
FIXME("\n\t%s\n\t%s semi-stub!\n", debugstr_guid(rclsid), debugstr_guid(riid));
|
||||
|
||||
|
@ -2309,27 +2310,35 @@ HRESULT WINAPI OleCreate(
|
|||
if (SUCCEEDED(hres))
|
||||
hres = IStorage_SetClass(pStg, rclsid);
|
||||
|
||||
if (pClientSite && SUCCEEDED(hres))
|
||||
hres = IUnknown_QueryInterface(pUnk, &IID_IOleObject, (LPVOID*)&pOleObject);
|
||||
|
||||
if (SUCCEEDED(hres))
|
||||
{
|
||||
if (pClientSite)
|
||||
{
|
||||
IOleObject * pOE;
|
||||
IPersistStorage * pPS;
|
||||
if (SUCCEEDED((hres = IUnknown_QueryInterface( pUnk, &IID_IOleObject, (LPVOID*)&pOE))))
|
||||
{
|
||||
TRACE("trying to set clientsite %p\n", pClientSite);
|
||||
hres1 = IOleObject_SetClientSite(pOE, pClientSite);
|
||||
TRACE("-- result 0x%08lx\n", hres1);
|
||||
IOleObject_Release(pOE);
|
||||
}
|
||||
if (SUCCEEDED((hres = IUnknown_QueryInterface(pUnk, &IID_IPersistStorage, (LPVOID*)&pPS))))
|
||||
{
|
||||
TRACE("trying to set stg %p\n", pStg);
|
||||
hres1 = IPersistStorage_InitNew(pPS, pStg);
|
||||
TRACE("-- result 0x%08lx\n", hres1);
|
||||
hres = IPersistStorage_InitNew(pPS, pStg);
|
||||
TRACE("-- result 0x%08lx\n", hres);
|
||||
IPersistStorage_Release(pPS);
|
||||
}
|
||||
}
|
||||
|
||||
if (pClientSite && SUCCEEDED(hres))
|
||||
{
|
||||
TRACE("trying to set clientsite %p\n", pClientSite);
|
||||
hres = IOleObject_SetClientSite(pOleObject, pClientSite);
|
||||
TRACE("-- result 0x%08lx\n", hres);
|
||||
}
|
||||
|
||||
if (pOleObject)
|
||||
IOleObject_Release(pOleObject);
|
||||
|
||||
if (FAILED(hres))
|
||||
{
|
||||
IUnknown_Release(pUnk);
|
||||
pUnk = NULL;
|
||||
}
|
||||
|
||||
*ppvObj = pUnk;
|
||||
|
|
Loading…
Reference in a new issue