Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
da91da46
Commit
da91da46
authored
Jan 22, 2010
by
Paul Vriens
Committed by
Alexandre Julliard
Jan 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4/tests: Fix some memory leaks (Valgrind).
parent
307b9fb6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
rpc.c
dlls/rpcrt4/tests/rpc.c
+4
-0
No files found.
dlls/rpcrt4/tests/rpc.c
View file @
da91da46
...
...
@@ -654,9 +654,13 @@ static void test_RpcStringBindingParseA(void)
ok
(
status
==
RPC_S_INVALID_STRING_BINDING
,
"RpcStringBindingParseA should have returned RPC_S_INVALID_STRING_BINDING instead of %d
\n
"
,
status
);
todo_wine
ok
(
uuid
==
NULL
,
"uuid was %p instead of NULL
\n
"
,
uuid
);
if
(
uuid
)
RpcStringFreeA
(
&
uuid
);
ok
(
protseq
==
NULL
,
"protseq was %p instead of NULL
\n
"
,
protseq
);
todo_wine
ok
(
network_addr
==
NULL
,
"network_addr was %p instead of NULL
\n
"
,
network_addr
);
if
(
network_addr
)
RpcStringFreeA
(
&
network_addr
);
ok
(
endpoint
==
NULL
,
"endpoint was %p instead of NULL
\n
"
,
endpoint
);
ok
(
options
==
NULL
,
"options was %p instead of NULL
\n
"
,
options
);
}
...
...
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