Reverted some coding-style changes as per Alekseys request.

svn path=/trunk/; revision=45019
This commit is contained in:
Eric Kohl 2010-01-09 21:57:00 +00:00
parent 1145a26d92
commit b4f5a3e1a1
8 changed files with 34 additions and 70 deletions

View file

@ -848,16 +848,16 @@ GetProcessVersion(DWORD ProcessId)
&ProcessBasicInfo, &ProcessBasicInfo,
sizeof(ProcessBasicInfo), sizeof(ProcessBasicInfo),
NULL); NULL);
if (!NT_SUCCESS(Status))
goto Error; if (!NT_SUCCESS(Status)) goto Error;
Status = NtReadVirtualMemory(ProcessHandle, Status = NtReadVirtualMemory(ProcessHandle,
ProcessBasicInfo.PebBaseAddress, ProcessBasicInfo.PebBaseAddress,
&Peb, &Peb,
sizeof(Peb), sizeof(Peb),
&Count); &Count);
if (!NT_SUCCESS(Status) || Count != sizeof(Peb))
goto Error; if (!NT_SUCCESS(Status) || Count != sizeof(Peb)) goto Error;
memset(&DosHeader, 0, sizeof(DosHeader)); memset(&DosHeader, 0, sizeof(DosHeader));
Status = NtReadVirtualMemory(ProcessHandle, Status = NtReadVirtualMemory(ProcessHandle,
@ -866,11 +866,8 @@ GetProcessVersion(DWORD ProcessId)
sizeof(DosHeader), sizeof(DosHeader),
&Count); &Count);
if (!NT_SUCCESS(Status) || Count != sizeof(DosHeader)) if (!NT_SUCCESS(Status) || Count != sizeof(DosHeader)) goto Error;
goto Error; if (DosHeader.e_magic != IMAGE_DOS_SIGNATURE) goto Error;
if (DosHeader.e_magic != IMAGE_DOS_SIGNATURE)
goto Error;
memset(&NtHeaders, 0, sizeof(NtHeaders)); memset(&NtHeaders, 0, sizeof(NtHeaders));
Status = NtReadVirtualMemory(ProcessHandle, Status = NtReadVirtualMemory(ProcessHandle,
@ -879,11 +876,8 @@ GetProcessVersion(DWORD ProcessId)
sizeof(NtHeaders), sizeof(NtHeaders),
&Count); &Count);
if (!NT_SUCCESS(Status) || Count != sizeof(NtHeaders)) if (!NT_SUCCESS(Status) || Count != sizeof(NtHeaders)) goto Error;
goto Error; if (NtHeaders.Signature != IMAGE_NT_SIGNATURE) goto Error;
if (NtHeaders.Signature != IMAGE_NT_SIGNATURE)
goto Error;
Version = MAKELONG(NtHeaders.OptionalHeader.MinorSubsystemVersion, Version = MAKELONG(NtHeaders.OptionalHeader.MinorSubsystemVersion,
NtHeaders.OptionalHeader.MajorSubsystemVersion); NtHeaders.OptionalHeader.MajorSubsystemVersion);
@ -897,8 +891,7 @@ Error:
} }
_SEH2_FINALLY _SEH2_FINALLY
{ {
if (ProcessHandle) if (ProcessHandle) CloseHandle(ProcessHandle);
CloseHandle(ProcessHandle);
} }
_SEH2_END; _SEH2_END;
@ -1075,11 +1068,9 @@ QueryFullProcessImageNameW(HANDLE hProcess,
&Needed); &Needed);
Result = DynamicBuffer; Result = DynamicBuffer;
} }
else else Result = (PUNICODE_STRING)Buffer;
Result = (PUNICODE_STRING)Buffer;
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status)) goto Cleanup;
goto Cleanup;
if (Result->Length / sizeof(WCHAR) + 1 > *pdwSize) if (Result->Length / sizeof(WCHAR) + 1 > *pdwSize)
{ {

View file

@ -294,8 +294,7 @@ BasepDuplicateAndWriteHandle(IN HANDLE ProcessHandle,
"Address: %p\n", ProcessHandle, StandardHandle, Address); "Address: %p\n", ProcessHandle, StandardHandle, Address);
/* Don't touch Console Handles */ /* Don't touch Console Handles */
if (IsConsoleHandle(StandardHandle)) if (IsConsoleHandle(StandardHandle)) return;
return;
/* Duplicate the handle */ /* Duplicate the handle */
Status = NtDuplicateObject(NtCurrentProcess(), Status = NtDuplicateObject(NtCurrentProcess(),
@ -1018,8 +1017,7 @@ GetAppName:
CmdLineLength = wcslen(CMD_STRING) + wcslen(lpCommandLine) + 1; CmdLineLength = wcslen(CMD_STRING) + wcslen(lpCommandLine) + 1;
/* If we found quotes, then add them into the length size */ /* If we found quotes, then add them into the length size */
if (CmdLineIsAppName || FoundQuotes) if (CmdLineIsAppName || FoundQuotes) CmdLineLength += 2;
CmdLineLength += 2;
CmdLineLength *= sizeof(WCHAR); CmdLineLength *= sizeof(WCHAR);
/* Allocate space for the new command line */ /* Allocate space for the new command line */
@ -1313,8 +1311,7 @@ GetAppName:
if(lpEnvironment && !(dwCreationFlags & CREATE_UNICODE_ENVIRONMENT)) if(lpEnvironment && !(dwCreationFlags & CREATE_UNICODE_ENVIRONMENT))
{ {
lpEnvironment = BasepConvertUnicodeEnvironment(&EnvSize, lpEnvironment); lpEnvironment = BasepConvertUnicodeEnvironment(&EnvSize, lpEnvironment);
if (!lpEnvironment) if (!lpEnvironment) goto Cleanup;
goto Cleanup;
} }
/* Create Process Environment */ /* Create Process Environment */
@ -1422,31 +1419,21 @@ GetAppName:
Cleanup: Cleanup:
/* De-allocate heap strings */ /* De-allocate heap strings */
if (NameBuffer) if (NameBuffer) RtlFreeHeap(RtlGetProcessHeap(), 0, NameBuffer);
RtlFreeHeap(RtlGetProcessHeap(), 0, NameBuffer);
if (ApplicationName.Buffer) if (ApplicationName.Buffer)
RtlFreeHeap(RtlGetProcessHeap(), 0, ApplicationName.Buffer); RtlFreeHeap(RtlGetProcessHeap(), 0, ApplicationName.Buffer);
if (CurrentDirectory) RtlFreeHeap(RtlGetProcessHeap(), 0, CurrentDirectory);
if (CurrentDirectory) if (QuotedCmdLine) RtlFreeHeap(RtlGetProcessHeap(), 0, QuotedCmdLine);
RtlFreeHeap(RtlGetProcessHeap(), 0, CurrentDirectory);
if (QuotedCmdLine)
RtlFreeHeap(RtlGetProcessHeap(), 0, QuotedCmdLine);
/* Kill any handles still alive */ /* Kill any handles still alive */
if (hSection) if (hSection) NtClose(hSection);
NtClose(hSection);
if (hThread) if (hThread)
{ {
/* We don't know any more details then this */ /* We don't know any more details then this */
NtTerminateProcess(hProcess, STATUS_UNSUCCESSFUL); NtTerminateProcess(hProcess, STATUS_UNSUCCESSFUL);
NtClose(hThread); NtClose(hThread);
} }
if (hProcess) NtClose(hProcess);
if (hProcess)
NtClose(hProcess);
/* Return Success */ /* Return Success */
return Ret; return Ret;

View file

@ -26,9 +26,8 @@ InitializeCriticalSection(OUT LPCRITICAL_SECTION lpCriticalSection)
/* Initialize the critical section and raise an exception if we failed */ /* Initialize the critical section and raise an exception if we failed */
Status = RtlInitializeCriticalSection( Status = RtlInitializeCriticalSection(
(PRTL_CRITICAL_SECTION)lpCriticalSection); (PRTL_CRITICAL_SECTION)lpCriticalSection);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status)) RtlRaiseStatus(Status);
RtlRaiseStatus(Status);
} }
/* /*

View file

@ -75,8 +75,7 @@ CreateMutexExW(IN LPSECURITY_ATTRIBUTES lpMutexAttributes OPTIONAL,
BOOLEAN InitialOwner; BOOLEAN InitialOwner;
/* Now check if we got a name */ /* Now check if we got a name */
if (lpName) if (lpName) RtlInitUnicodeString(&ObjectName, lpName);
RtlInitUnicodeString(&ObjectName, lpName);
if (dwFlags & ~(CREATE_MUTEX_INITIAL_OWNER)) if (dwFlags & ~(CREATE_MUTEX_INITIAL_OWNER))
{ {
@ -258,8 +257,7 @@ ReleaseMutex(IN HANDLE hMutex)
/* Release the mutant */ /* Release the mutant */
Status = NtReleaseMutant(hMutex, NULL); Status = NtReleaseMutant(hMutex, NULL);
if (NT_SUCCESS(Status)) if (NT_SUCCESS(Status)) return TRUE;
return TRUE;
/* If we got here, then we failed */ /* If we got here, then we failed */
SetLastErrorByStatus(Status); SetLastErrorByStatus(Status);

View file

@ -80,8 +80,7 @@ CreateSemaphoreExW(IN LPSECURITY_ATTRIBUTES lpSemaphoreAttributes OPTIONAL,
UNICODE_STRING ObjectName; UNICODE_STRING ObjectName;
/* Now check if we got a name */ /* Now check if we got a name */
if (lpName) if (lpName) RtlInitUnicodeString(&ObjectName, lpName);
RtlInitUnicodeString(&ObjectName, lpName);
if (dwFlags != 0) if (dwFlags != 0)
{ {
@ -261,8 +260,7 @@ ReleaseSemaphore(IN HANDLE hSemaphore,
/* Release the semaphore */ /* Release the semaphore */
Status = NtReleaseSemaphore(hSemaphore, lReleaseCount, lpPreviousCount); Status = NtReleaseSemaphore(hSemaphore, lReleaseCount, lpPreviousCount);
if (NT_SUCCESS(Status)) if (NT_SUCCESS(Status)) return TRUE;
return TRUE;
/* If we got here, then we failed */ /* If we got here, then we failed */
SetLastErrorByStatus(Status); SetLastErrorByStatus(Status);

View file

@ -75,8 +75,7 @@ CreateWaitableTimerExW(IN LPSECURITY_ATTRIBUTES lpTimerAttributes OPTIONAL,
TIMER_TYPE TimerType; TIMER_TYPE TimerType;
/* Now check if we got a name */ /* Now check if we got a name */
if (lpTimerName) if (lpTimerName) RtlInitUnicodeString(&ObjectName, lpTimerName);
RtlInitUnicodeString(&ObjectName, lpTimerName);
if (dwFlags & ~(CREATE_WAITABLE_TIMER_MANUAL_RESET)) if (dwFlags & ~(CREATE_WAITABLE_TIMER_MANUAL_RESET))
{ {
@ -269,8 +268,7 @@ SetWaitableTimer(IN HANDLE hTimer,
(BOOLEAN)fResume, (BOOLEAN)fResume,
lPeriod, lPeriod,
NULL); NULL);
if (NT_SUCCESS(Status)) if (NT_SUCCESS(Status)) return TRUE;
return TRUE;
/* If we got here, then we failed */ /* If we got here, then we failed */
SetLastErrorByStatus(Status); SetLastErrorByStatus(Status);
@ -288,8 +286,7 @@ CancelWaitableTimer(IN HANDLE hTimer)
/* Cancel the timer */ /* Cancel the timer */
Status = NtCancelTimer(hTimer, NULL); Status = NtCancelTimer(hTimer, NULL);
if (NT_SUCCESS(Status)) if (NT_SUCCESS(Status)) return TRUE;
return TRUE;
/* If we got here, then we failed */ /* If we got here, then we failed */
SetLastErrorByStatus(Status); SetLastErrorByStatus(Status);

View file

@ -69,8 +69,7 @@ ConvertThreadToFiberEx(LPVOID lpParameter,
DPRINT1("Converting Thread to Fiber\n"); DPRINT1("Converting Thread to Fiber\n");
/* the current thread is already a fiber */ /* the current thread is already a fiber */
if (pTeb->HasFiberData && pTeb->Tib.FiberData) if(pTeb->HasFiberData && pTeb->Tib.FiberData) return pTeb->Tib.FiberData;
return pTeb->Tib.FiberData;
/* allocate the fiber */ /* allocate the fiber */
pfCurFiber = (PFIBER)RtlAllocateHeap(GetProcessHeap(), pfCurFiber = (PFIBER)RtlAllocateHeap(GetProcessHeap(),
@ -228,8 +227,7 @@ DeleteFiber(LPVOID lpFiber)
RtlFreeHeap(GetProcessHeap(), 0, lpFiber); RtlFreeHeap(GetProcessHeap(), 0, lpFiber);
/* the fiber is deleting itself: let the system deallocate the stack */ /* the fiber is deleting itself: let the system deallocate the stack */
if (NtCurrentTeb()->Tib.FiberData == lpFiber) if(NtCurrentTeb()->Tib.FiberData == lpFiber) ExitThread(1);
ExitThread(1);
/* deallocate the stack */ /* deallocate the stack */
NtFreeVirtualMemory(NtCurrentProcess(), NtFreeVirtualMemory(NtCurrentProcess(),

View file

@ -55,13 +55,11 @@ FlsGetValue(DWORD dwFlsIndex)
PVOID *ppFlsSlots; PVOID *ppFlsSlots;
PVOID pRetVal; PVOID pRetVal;
if (dwFlsIndex >= 128) if(dwFlsIndex >= 128) goto l_InvalidParam;
goto l_InvalidParam;
ppFlsSlots = NtCurrentTeb()->FlsData; ppFlsSlots = NtCurrentTeb()->FlsData;
if (ppFlsSlots == NULL) if(ppFlsSlots == NULL) goto l_InvalidParam;
goto l_InvalidParam;
SetLastError(0); SetLastError(0);
pRetVal = ppFlsSlots[dwFlsIndex + 2]; pRetVal = ppFlsSlots[dwFlsIndex + 2];
@ -84,8 +82,7 @@ FlsSetValue(DWORD dwFlsIndex, PVOID lpFlsData)
PVOID *ppFlsSlots; PVOID *ppFlsSlots;
TEB *pTeb = NtCurrentTeb(); TEB *pTeb = NtCurrentTeb();
if (dwFlsIndex >= 128) if(dwFlsIndex >= 128) goto l_InvalidParam;
goto l_InvalidParam;
ppFlsSlots = pTeb->FlsData; ppFlsSlots = pTeb->FlsData;
@ -96,8 +93,7 @@ FlsSetValue(DWORD dwFlsIndex, PVOID lpFlsData)
ppFlsSlots = RtlAllocateHeap(pPeb->ProcessHeap, ppFlsSlots = RtlAllocateHeap(pPeb->ProcessHeap,
HEAP_ZERO_MEMORY, HEAP_ZERO_MEMORY,
(128 + 2) * sizeof(PVOID)); (128 + 2) * sizeof(PVOID));
if (ppFlsSlots == NULL) if(ppFlsSlots == NULL) goto l_OutOfMemory;
goto l_OutOfMemory;
pTeb->FlsData = ppFlsSlots; pTeb->FlsData = ppFlsSlots;