From 173f8d23b89ec32ba4298108d1e76d41fae8dc81 Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Fri, 6 May 2011 12:50:39 +0100 Subject: [PATCH] gameux: Zero initialize the fixed length arrays. --- dlls/gameux/gamestatistics.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/gameux/gamestatistics.c b/dlls/gameux/gamestatistics.c index 63b8c8f300b..65aa0f762b9 100644 --- a/dlls/gameux/gamestatistics.c +++ b/dlls/gameux/gamestatistics.c @@ -998,7 +998,7 @@ static HRESULT create_IGameStatistics(GameStatisticsImpl** ppStats) { TRACE("(%p)\n", ppStats); - *ppStats = HeapAlloc( GetProcessHeap(), 0, sizeof(**ppStats)); + *ppStats = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(**ppStats)); if(!(*ppStats)) return E_OUTOFMEMORY;