mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
"Fix" using an uninitialized variable (line 950) in lines 1334-1337. Yes I'm back, for now!
svn path=/trunk/; revision=23759
This commit is contained in:
parent
6e015da993
commit
ca9ef93e32
1 changed files with 1 additions and 1 deletions
|
@ -947,7 +947,7 @@ Main_DirectDraw_GetCaps(LPDIRECTDRAW7 iface, LPDDCAPS pDriverCaps,
|
|||
{
|
||||
DX_WINDBG_trace();
|
||||
|
||||
DDSCAPS2 ddscaps;
|
||||
DDSCAPS2 ddscaps = {0};
|
||||
DWORD status = DD_FALSE;
|
||||
IDirectDrawImpl *This = (IDirectDrawImpl *)iface;
|
||||
|
||||
|
|
Loading…
Reference in a new issue