Module: wine Branch: master Commit: 4f704760e1ba960c1d7b2f159da5d100bed92a5c URL: http://source.winehq.org/git/wine.git/?a=commit;h=4f704760e1ba960c1d7b2f159d...
Author: Marcus Meissner meissner@suse.de Date: Tue Aug 30 15:43:15 2011 +0200
gameux: Initialize a variable (Coverity).
---
dlls/gameux/gamestatistics.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/gameux/gamestatistics.c b/dlls/gameux/gamestatistics.c index 5465b39..b40975f 100644 --- a/dlls/gameux/gamestatistics.c +++ b/dlls/gameux/gamestatistics.c @@ -1083,7 +1083,7 @@ static HRESULT STDMETHODCALLTYPE GameStatisticsMgrImpl_GetGameStatistics( { HRESULT hr; WCHAR lpApplicationId[49]; - GameStatisticsImpl *statisticsImpl; + GameStatisticsImpl *statisticsImpl = NULL; IGameStatistics *output_iface;
TRACE("(%p, %s, 0x%x, %p, %p)\n", iface, debugstr_w(GDFBinaryPath), openType, pOpenResult, ppiStats);