sxs: Don't assign a COM object to the 3rd param of QueryInterface.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2021-09-15 20:31:47 +02:00 committed by Alexandre Julliard
parent 2868e9350a
commit 67ea78c881
2 changed files with 8 additions and 12 deletions

View file

@ -57,19 +57,17 @@ static inline struct cache *impl_from_IAssemblyCache(IAssemblyCache *iface)
static HRESULT WINAPI cache_QueryInterface( static HRESULT WINAPI cache_QueryInterface(
IAssemblyCache *iface, IAssemblyCache *iface,
REFIID riid, REFIID riid,
void **obj ) void **ret_iface )
{ {
struct cache *cache = impl_from_IAssemblyCache(iface); TRACE("%p, %s, %p\n", iface, debugstr_guid(riid), ret_iface);
TRACE("%p, %s, %p\n", cache, debugstr_guid(riid), obj); *ret_iface = NULL;
*obj = NULL;
if (IsEqualIID(riid, &IID_IUnknown) || if (IsEqualIID(riid, &IID_IUnknown) ||
IsEqualIID(riid, &IID_IAssemblyCache)) IsEqualIID(riid, &IID_IAssemblyCache))
{ {
IAssemblyCache_AddRef( iface ); IAssemblyCache_AddRef( iface );
*obj = cache; *ret_iface = iface;
return S_OK; return S_OK;
} }

View file

@ -56,19 +56,17 @@ static inline struct name *impl_from_IAssemblyName( IAssemblyName *iface )
static HRESULT WINAPI name_QueryInterface( static HRESULT WINAPI name_QueryInterface(
IAssemblyName *iface, IAssemblyName *iface,
REFIID riid, REFIID riid,
void **obj ) void **ret_iface )
{ {
struct name *name = impl_from_IAssemblyName( iface ); TRACE("%p, %s, %p\n", iface, debugstr_guid(riid), ret_iface);
TRACE("%p, %s, %p\n", name, debugstr_guid(riid), obj); *ret_iface = NULL;
*obj = NULL;
if (IsEqualIID( riid, &IID_IUnknown ) || if (IsEqualIID( riid, &IID_IUnknown ) ||
IsEqualIID( riid, &IID_IAssemblyName )) IsEqualIID( riid, &IID_IAssemblyName ))
{ {
IAssemblyName_AddRef( iface ); IAssemblyName_AddRef( iface );
*obj = name; *ret_iface = iface;
return S_OK; return S_OK;
} }