Michael Stefaniuc : quartz: Fix typo that produced an empty if-statement.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Mar 20 08:11:04 CDT 2007


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Tue Mar 20 10:55:24 2007 +0100

quartz: Fix typo that produced an empty if-statement.

---

 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 682f535..5e1061e 100644
--- a/dlls/quartz/filtergraph.c
+++ b/dlls/quartz/filtergraph.c
@@ -1127,7 +1127,7 @@ static HRESULT WINAPI GraphBuilder_RenderFile(IGraphBuilder *iface,
 
     IPin_Release(ppinreader);
     IBaseFilter_Release(preader);
-    if (psplitter);
+    if (psplitter)
         IBaseFilter_Release(psplitter);
 
     return hr;




More information about the wine-cvs mailing list