Chris Robinson : quartz: Loop through the rest of the possible filters even when a connection fails .
Module: wine Branch: master Commit: 2250c2898f2ee392fdeb58342ccbe12f8fec3b6f URL: http://source.winehq.org/git/wine.git/?a=commit;h=2250c2898f2ee392fdeb58342c... Author: Chris Robinson <chris.kcat(a)gmail.com> Date: Tue Feb 13 14:32:34 2007 -0800 quartz: Loop through the rest of the possible filters even when a connection fails. --- dlls/quartz/filtergraph.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index ab31cd4..ebda643 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -1061,7 +1061,7 @@ static HRESULT WINAPI GraphBuilder_RenderFile(IGraphBuilder *iface, IBaseFilter_Release(ppinsplitter); ppinsplitter = NULL; TRACE("Cannot connect to filter (%x), trying next one\n", hr); - break; + continue; } TRACE("Successfully connected to filter\n"); break;
participants (1)
-
Alexandre Julliard