mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:32:56 +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];
|
WCHAR PathBuffer[MAX_PATH];
|
||||||
PINFCONTEXT DirContext;
|
PINFCONTEXT DirContext;
|
||||||
PWCHAR AdditionalSectionName;
|
PWCHAR AdditionalSectionName = NULL;
|
||||||
PWCHAR KeyValue;
|
PWCHAR KeyValue;
|
||||||
ULONG Length;
|
ULONG Length;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
|
@ -910,7 +910,7 @@ IntMouseInput(MOUSEINPUT *mi)
|
||||||
{
|
{
|
||||||
MK_LBUTTON, MK_RBUTTON
|
MK_LBUTTON, MK_RBUTTON
|
||||||
};
|
};
|
||||||
POINT MousePos, OrgPos;
|
POINT MousePos = {0}, OrgPos;
|
||||||
PSYSTEM_CURSORINFO CurInfo;
|
PSYSTEM_CURSORINFO CurInfo;
|
||||||
PWINSTATION_OBJECT WinSta;
|
PWINSTATION_OBJECT WinSta;
|
||||||
BOOL DoMove, SwapButtons;
|
BOOL DoMove, SwapButtons;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue