msctf: Remove incorrect dereference of double pointer.
Signed-off-by: Brock York <twunknown@gmail.com> Signed-off-by: Michael Stefaniuc <mstefani@redhat.de> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
831c202c38
commit
d7662881a5
|
@ -1187,7 +1187,7 @@ static HRESULT WINAPI UIElementMgr_QueryInterface(ITfUIElementMgr *iface, REFIID
|
||||||
{
|
{
|
||||||
ThreadMgr *This = impl_from_ITfUIElementMgr(iface);
|
ThreadMgr *This = impl_from_ITfUIElementMgr(iface);
|
||||||
|
|
||||||
return ITfThreadMgrEx_QueryInterface(&This->ITfThreadMgrEx_iface, iid, *ppvOut);
|
return ITfThreadMgrEx_QueryInterface(&This->ITfThreadMgrEx_iface, iid, ppvOut);
|
||||||
}
|
}
|
||||||
|
|
||||||
static ULONG WINAPI UIElementMgr_AddRef(ITfUIElementMgr *iface)
|
static ULONG WINAPI UIElementMgr_AddRef(ITfUIElementMgr *iface)
|
||||||
|
|
Loading…
Reference in New Issue