Chris Robinson : quartz: Loop through the rest of the possible filters even when a connection fails .

Alexandre Julliard julliard at wine.codeweavers.com
Wed Feb 14 09:25:40 CST 2007


Module: wine
Branch: master
Commit: 2250c2898f2ee392fdeb58342ccbe12f8fec3b6f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=2250c2898f2ee392fdeb58342ccbe12f8fec3b6f

Author: Chris Robinson <chris.kcat at 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;




More information about the wine-cvs mailing list