Michael Stefaniuc : quartz: Fix typo that produced an empty if-statement.
Module: wine Branch: master Commit: 0674ff43b2a0c74fb1d58118703e5658cc8051b3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0674ff43b2a0c74fb1d5811870... Author: Michael Stefaniuc <mstefani(a)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;
participants (1)
-
Alexandre Julliard