mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 13:53:41 +00:00
More fixes to compile.
svn path=/trunk/; revision=18230
This commit is contained in:
parent
fdf33e349f
commit
7411ee2fea
2 changed files with 11 additions and 11 deletions
|
@ -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
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue