Module: wine Branch: oldstable Commit: aac46fef39680fa15df81795ebf8e31f2d612fa5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=aac46fef39680fa15df81795eb...
Author: Brock York twunknown@gmail.com Date: Sat Dec 10 01:05:48 2016 +1100
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 (cherry picked from commit d7662881a52305045aa01e6dff8275331a67f70e) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
dlls/msctf/threadmgr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/msctf/threadmgr.c b/dlls/msctf/threadmgr.c index 3f0e7f6..bce1d27 100644 --- a/dlls/msctf/threadmgr.c +++ b/dlls/msctf/threadmgr.c @@ -1257,7 +1257,7 @@ static HRESULT WINAPI UIElementMgr_QueryInterface(ITfUIElementMgr *iface, REFIID { 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)