shell32: Don't cast from COM object to interface.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-05-31 23:14:53 +02:00 committed by Alexandre Julliard
parent 5d51d8a25e
commit 245417571a
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ LPENUMFORMATETC IEnumFORMATETC_Constructor(UINT cfmt, const FORMATETC afmt[])
}
TRACE("(%p)->(%u,%p)\n",ef, cfmt, afmt);
return (LPENUMFORMATETC)ef;
return &ef->IEnumFORMATETC_iface;
}

View File

@ -401,7 +401,7 @@ static IClassFactory * IDefClF_fnConstructor(LPFNCREATEINSTANCE lpfnCI, PLONG pc
lpclf->riidInst = riidInst;
TRACE("(%p)%s\n",lpclf, shdebugstr_guid(riidInst));
return (LPCLASSFACTORY)lpclf;
return &lpclf->IClassFactory_iface;
}
/**************************************************************************
* IDefClF_fnQueryInterface