mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
msctf: Return proper pointer to interface.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
1b04cf1e37
commit
7bcca927bc
1 changed files with 1 additions and 1 deletions
|
@ -180,7 +180,7 @@ static HRESULT ClassFactory_Constructor(LPFNCONSTRUCTOR ctor, LPVOID *ppvOut)
|
|||
This->IClassFactory_iface.lpVtbl = &ClassFactoryVtbl;
|
||||
This->ref = 1;
|
||||
This->ctor = ctor;
|
||||
*ppvOut = This;
|
||||
*ppvOut = &This->IClassFactory_iface;
|
||||
TRACE("Created class factory %p\n", This);
|
||||
return S_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue