Commit 173f8d23 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

gameux: Zero initialize the fixed length arrays.

parent 3f7312fd
...@@ -998,7 +998,7 @@ static HRESULT create_IGameStatistics(GameStatisticsImpl** ppStats) ...@@ -998,7 +998,7 @@ static HRESULT create_IGameStatistics(GameStatisticsImpl** ppStats)
{ {
TRACE("(%p)\n", ppStats); TRACE("(%p)\n", ppStats);
*ppStats = HeapAlloc( GetProcessHeap(), 0, sizeof(**ppStats)); *ppStats = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(**ppStats));
if(!(*ppStats)) if(!(*ppStats))
return E_OUTOFMEMORY; return E_OUTOFMEMORY;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment