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
31aab429
Commit
31aab429
authored
Dec 05, 2007
by
Lei Zhang
Committed by
Alexandre Julliard
Dec 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Fix return value in IFilterGraph_FindFilterByName.
parent
646eefaa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
filtergraph.c
dlls/quartz/filtergraph.c
+1
-1
filtergraph.c
dlls/quartz/tests/filtergraph.c
+1
-3
No files found.
dlls/quartz/filtergraph.c
View file @
31aab429
...
...
@@ -495,7 +495,7 @@ static HRESULT WINAPI GraphBuilder_FindFilterByName(IGraphBuilder *iface,
}
}
return
E_FAIL
;
/* FIXME: check this error code */
return
VFW_E_NOT_FOUND
;
}
/* NOTE: despite the implication, it doesn't matter which
...
...
dlls/quartz/tests/filtergraph.c
View file @
31aab429
...
...
@@ -138,9 +138,7 @@ static void test_graph_builder(void)
ok
(
dir
==
PINDIR_INPUT
,
"pin has wrong direction
\n
"
);
hr
=
IGraphBuilder_FindFilterByName
(
pgraph
,
fooBarW
,
&
pF2
);
todo_wine
{
ok
(
hr
==
VFW_E_NOT_FOUND
,
"IGraphBuilder_FindFilterByName returned %x
\n
"
,
hr
);
}
ok
(
hr
==
VFW_E_NOT_FOUND
,
"IGraphBuilder_FindFilterByName returned %x
\n
"
,
hr
);
ok
(
pF2
==
NULL
,
"IGraphBuilder_FindFilterByName returned %p
\n
"
,
pF2
);
hr
=
IGraphBuilder_FindFilterByName
(
pgraph
,
testFilterW
,
&
pF2
);
ok
(
hr
==
S_OK
,
"IGraphBuilder_FindFilterByName returned %x
\n
"
,
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