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
126e5d2c
Commit
126e5d2c
authored
Dec 14, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Dec 17, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hlink: Fix some memory leaks in the tests.
parent
737510ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
hlink.c
dlls/hlink/tests/hlink.c
+3
-0
No files found.
dlls/hlink/tests/hlink.c
View file @
126e5d2c
...
...
@@ -101,6 +101,7 @@ static void test_reference(void)
r
=
IHlink_GetStringReference
(
lnk
,
-
1
,
&
str
,
NULL
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
CoTaskMemFree
(
str
);
r
=
IHlink_GetStringReference
(
lnk
,
HLINKGETREF_DEFAULT
,
&
str
,
NULL
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
...
...
@@ -115,6 +116,8 @@ static void test_reference(void)
r
=
IHlink_GetStringReference
(
lnk
,
HLINKGETREF_DEFAULT
,
NULL
,
&
str
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
ok
(
str
==
NULL
,
"string should be null
\n
"
);
IHlink_Release
(
lnk
);
}
/* url only */
...
...
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