Module: wine Branch: master Commit: d2bc96bf8a6ec09667164b91c602357524c4b55a URL: http://source.winehq.org/git/wine.git/?a=commit;h=d2bc96bf8a6ec09667164b91c6...
Author: Marcus Meissner marcus@jet.franken.de Date: Tue May 22 21:28:47 2007 +0100
quartz: ppinsplitter might be used uninitialized (Coverity).
---
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 e6c19f5..02728d5 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -997,7 +997,7 @@ static HRESULT WINAPI GraphBuilder_RenderFile(IGraphBuilder *iface, IBaseFilter* preader = NULL; IBaseFilter* psplitter = NULL; IPin* ppinreader = NULL; - IPin* ppinsplitter; + IPin* ppinsplitter = NULL; IEnumPins* penumpins; ULONG pin; HRESULT hr;