explorerframe: Return interface pointer from QI instead of impl pointer.

oldstable
Nikolay Sivov 2015-03-20 11:23:15 +03:00 committed by Alexandre Julliard
parent d7f0a5ff08
commit 20e302e203
1 changed files with 1 additions and 1 deletions

View File

@ -818,7 +818,7 @@ static HRESULT WINAPI NSTC2_fnQueryInterface(INameSpaceTreeControl2* iface,
IsEqualIID(riid, &IID_INameSpaceTreeControl) ||
IsEqualIID(riid, &IID_IUnknown))
{
*ppvObject = This;
*ppvObject = &This->INameSpaceTreeControl2_iface;
}
else if(IsEqualIID(riid, &IID_IOleWindow))
{