mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
fixed uninitialized variables warnings
svn path=/trunk/; revision=19686
This commit is contained in:
parent
4482ce98c3
commit
c7fb28f9ee
2 changed files with 2 additions and 2 deletions
|
@ -2773,7 +2773,7 @@ PrepareCopyPageInfFile(HINF InfFile,
|
|||
{
|
||||
WCHAR PathBuffer[MAX_PATH];
|
||||
PINFCONTEXT DirContext;
|
||||
PWCHAR AdditionalSectionName;
|
||||
PWCHAR AdditionalSectionName = NULL;
|
||||
PWCHAR KeyValue;
|
||||
ULONG Length;
|
||||
NTSTATUS Status;
|
||||
|
|
|
@ -910,7 +910,7 @@ IntMouseInput(MOUSEINPUT *mi)
|
|||
{
|
||||
MK_LBUTTON, MK_RBUTTON
|
||||
};
|
||||
POINT MousePos, OrgPos;
|
||||
POINT MousePos = {0}, OrgPos;
|
||||
PSYSTEM_CURSORINFO CurInfo;
|
||||
PWINSTATION_OBJECT WinSta;
|
||||
BOOL DoMove, SwapButtons;
|
||||
|
|
Loading…
Reference in a new issue