1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Trimmed trailing whitespace

This commit is contained in:
Brian Fiete 2022-07-30 09:11:38 -04:00
parent 8eda627e2f
commit 14f20f10c8
28 changed files with 1659 additions and 1768 deletions

View file

@ -149,7 +149,7 @@ void HDCheckHandles(const std::string& traceStr)
handleInfo = (PSYSTEM_HANDLE_INFORMATION)malloc(handleInfoSize);
NTSTATUS status;
/* NtQuerySystemInformation won't give us the correct buffer size,
/* NtQuerySystemInformation won't give us the correct buffer size,
so we guess by doubling the buffer size. */
while ((status = gNtQuerySystemInformation(
SystemHandleInformation,
@ -181,7 +181,7 @@ void HDCheckHandles(const std::string& traceStr)
/* Check if this handle belongs to the PID the user specified. */
if (handle.ProcessId != GetCurrentProcessId())
continue;
auto itr = oldHandleMap.find(handle.Handle);
if (itr != oldHandleMap.end())
gHDHandleMap.insert(*itr);
@ -261,7 +261,7 @@ void HDDump()
continue;
}
/* Query the object name (unless it has an access of
/* Query the object name (unless it has an access of
0x0012019f, on which NtQueryObject could hang. */
if (handle.GrantedAccess == 0x0012019f)
{
@ -375,7 +375,7 @@ int ZZwmain(int argc, WCHAR *argv[])
handleInfo = (PSYSTEM_HANDLE_INFORMATION)malloc(handleInfoSize);
/* NtQuerySystemInformation won't give us the correct buffer size,
/* NtQuerySystemInformation won't give us the correct buffer size,
so we guess by doubling the buffer size. */
while ((status = NtQuerySystemInformation(
SystemHandleInformation,
@ -435,7 +435,7 @@ int ZZwmain(int argc, WCHAR *argv[])
continue;
}
/* Query the object name (unless it has an access of
/* Query the object name (unless it has an access of
0x0012019f, on which NtQueryObject could hang. */
if (handle.GrantedAccess == 0x0012019f)
{
@ -520,4 +520,4 @@ int ZZwmain(int argc, WCHAR *argv[])
CloseHandle(processHandle);
return 0;
}
}