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
7e3ab901
Commit
7e3ab901
authored
Jun 15, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs/tests: Fixed some leaks on error path (Valgrind).
parent
d3a034e3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
metadata.c
dlls/windowscodecs/tests/metadata.c
+7
-1
No files found.
dlls/windowscodecs/tests/metadata.c
View file @
7e3ab901
...
@@ -845,7 +845,13 @@ static void test_create_reader(void)
...
@@ -845,7 +845,13 @@ static void test_create_reader(void)
stream
,
&
reader
);
stream
,
&
reader
);
todo_wine
todo_wine
ok
(
hr
==
S_OK
,
"CreateMetadataReaderFromContainer failed, hr=%x
\n
"
,
hr
);
ok
(
hr
==
S_OK
,
"CreateMetadataReaderFromContainer failed, hr=%x
\n
"
,
hr
);
if
(
FAILED
(
hr
))
return
;
/* NOTE: removed once Wine is fixed */
if
(
FAILED
(
hr
))
{
IStream_Release
(
stream
);
IWICComponentFactory_Release
(
factory
);
return
;
}
if
(
SUCCEEDED
(
hr
))
if
(
SUCCEEDED
(
hr
))
{
{
...
...
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