gameux: Zero initialize the fixed length arrays.

oldstable
Huw Davies 2011-05-06 12:50:39 +01:00 committed by Alexandre Julliard
parent 3f7312fdc1
commit 173f8d23b8
1 changed files with 1 additions and 1 deletions

View File

@ -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;