fixed uninitialized variables warnings

svn path=/trunk/; revision=19686
This commit is contained in:
Thomas Bluemel 2005-11-27 14:02:58 +00:00
parent 4482ce98c3
commit c7fb28f9ee
2 changed files with 2 additions and 2 deletions

View file

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

View file

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