Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
0bf6df68
Commit
0bf6df68
authored
May 27, 2016
by
Jacek Caban
Committed by
Alexandre Julliard
May 28, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msctf: Fixed ref counts in tests.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bc645ca7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
inputprocessor.c
dlls/msctf/tests/inputprocessor.c
+4
-1
No files found.
dlls/msctf/tests/inputprocessor.c
View file @
0bf6df68
...
...
@@ -567,9 +567,9 @@ ITfContext *pic)
hr
=
ITfContext_GetDocumentMgr
(
pic
,
&
docmgr
);
ok
(
SUCCEEDED
(
hr
),
"GetDocumentMgr failed
\n
"
);
test
=
(
ITfContext
*
)
0xdeadbeef
;
ITfDocumentMgr_Release
(
docmgr
);
hr
=
ITfDocumentMgr_GetTop
(
docmgr
,
&
test
);
ok
(
SUCCEEDED
(
hr
),
"GetTop failed
\n
"
);
ITfDocumentMgr_Release
(
docmgr
);
ok
(
test
==
pic
,
"Wrong context is on top
\n
"
);
if
(
test
)
ITfContext_Release
(
test
);
...
...
@@ -2345,6 +2345,9 @@ START_TEST(inputprocessor)
test_UnregisterCategory
();
test_Unregister
();
test_profile_mgr
();
ITextStoreACPSink_Release
(
ACPSink
);
ITfDocumentMgr_Release
(
g_dm
);
}
else
skip
(
"Unable to create InputProcessor
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment