mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 00:34: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,
|
CsrCaptureArguments(IN PCSR_THREAD CsrThread,
|
||||||
IN PCSR_API_MESSAGE ApiMessage)
|
IN PCSR_API_MESSAGE ApiMessage)
|
||||||
{
|
{
|
||||||
PCSR_CAPTURE_BUFFER LocalCaptureBuffer;
|
PCSR_CAPTURE_BUFFER LocalCaptureBuffer = NULL;
|
||||||
ULONG LocalLength;
|
ULONG LocalLength = 0;
|
||||||
PCSR_CAPTURE_BUFFER RemoteCaptureBuffer;
|
PCSR_CAPTURE_BUFFER RemoteCaptureBuffer = NULL;
|
||||||
SIZE_T BufferDistance;
|
SIZE_T BufferDistance = 0;
|
||||||
ULONG PointerCount;
|
ULONG PointerCount = 0;
|
||||||
ULONG_PTR **PointerOffsets;
|
ULONG_PTR **PointerOffsets = NULL;
|
||||||
ULONG_PTR *CurrentPointer;
|
ULONG_PTR *CurrentPointer = NULL;
|
||||||
|
|
||||||
/* Use SEH to make sure this is valid */
|
/* Use SEH to make sure this is valid */
|
||||||
_SEH_TRY
|
_SEH_TRY
|
||||||
|
|
|
@ -1097,12 +1097,12 @@ CsrShutdownProcesses(PLUID CallerLuid,
|
||||||
ULONG Flags)
|
ULONG Flags)
|
||||||
{
|
{
|
||||||
PLIST_ENTRY ListHead, NextEntry;
|
PLIST_ENTRY ListHead, NextEntry;
|
||||||
PCSR_PROCESS CsrProcess;
|
PCSR_PROCESS CsrProcess = NULL;
|
||||||
NTSTATUS Status = STATUS_UNSUCCESSFUL;
|
NTSTATUS Status = STATUS_UNSUCCESSFUL;
|
||||||
BOOLEAN FirstTry = TRUE;
|
BOOLEAN FirstTry = TRUE;
|
||||||
ULONG i;
|
ULONG i = 0;
|
||||||
PCSR_SERVER_DLL ServerDll;
|
PCSR_SERVER_DLL ServerDll = NULL;
|
||||||
ULONG Result;
|
ULONG Result = 0;
|
||||||
|
|
||||||
/* Acquire process lock */
|
/* Acquire process lock */
|
||||||
CsrAcquireProcessLock();
|
CsrAcquireProcessLock();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue