netprofm: Clear the object pointer on failure in QueryInterface.
This commit is contained in:
parent
346dd728fb
commit
981460e84a
|
@ -99,6 +99,7 @@ static HRESULT WINAPI connection_point_QueryInterface(
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
|
FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
|
||||||
|
*obj = NULL;
|
||||||
return E_NOINTERFACE;
|
return E_NOINTERFACE;
|
||||||
}
|
}
|
||||||
IConnectionPoint_AddRef( iface );
|
IConnectionPoint_AddRef( iface );
|
||||||
|
@ -388,6 +389,7 @@ static HRESULT WINAPI list_manager_QueryInterface(
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
|
FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
|
||||||
|
*obj = NULL;
|
||||||
return E_NOINTERFACE;
|
return E_NOINTERFACE;
|
||||||
}
|
}
|
||||||
INetworkListManager_AddRef( iface );
|
INetworkListManager_AddRef( iface );
|
||||||
|
|
Loading…
Reference in New Issue