More fixes to compile.

svn path=/trunk/; revision=18230
This commit is contained in:
Emanuele Aliberti 2005-10-02 19:39:30 +00:00
parent fdf33e349f
commit 7411ee2fea
2 changed files with 11 additions and 11 deletions

View file

@ -1124,13 +1124,13 @@ NTAPI
CsrCaptureArguments(IN PCSR_THREAD CsrThread,
IN PCSR_API_MESSAGE ApiMessage)
{
PCSR_CAPTURE_BUFFER LocalCaptureBuffer;
ULONG LocalLength;
PCSR_CAPTURE_BUFFER RemoteCaptureBuffer;
SIZE_T BufferDistance;
ULONG PointerCount;
ULONG_PTR **PointerOffsets;
ULONG_PTR *CurrentPointer;
PCSR_CAPTURE_BUFFER LocalCaptureBuffer = NULL;
ULONG LocalLength = 0;
PCSR_CAPTURE_BUFFER RemoteCaptureBuffer = NULL;
SIZE_T BufferDistance = 0;
ULONG PointerCount = 0;
ULONG_PTR **PointerOffsets = NULL;
ULONG_PTR *CurrentPointer = NULL;
/* Use SEH to make sure this is valid */
_SEH_TRY

View file

@ -1097,12 +1097,12 @@ CsrShutdownProcesses(PLUID CallerLuid,
ULONG Flags)
{
PLIST_ENTRY ListHead, NextEntry;
PCSR_PROCESS CsrProcess;
PCSR_PROCESS CsrProcess = NULL;
NTSTATUS Status = STATUS_UNSUCCESSFUL;
BOOLEAN FirstTry = TRUE;
ULONG i;
PCSR_SERVER_DLL ServerDll;
ULONG Result;
ULONG i = 0;
PCSR_SERVER_DLL ServerDll = NULL;
ULONG Result = 0;
/* Acquire process lock */
CsrAcquireProcessLock();