[NTOS:IO/KD/KDBG] Formatting fixes only.

This commit is contained in:
Hermès Bélusca-Maïto 2023-01-09 12:11:19 +01:00
parent df7ab5d8f7
commit 4585372c6d
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
4 changed files with 8 additions and 7 deletions

View file

@ -584,8 +584,8 @@ IoInitSystem(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
return FALSE;
}
// the disk subsystem is initialized here and the SystemRoot is set too
// we can finally load other drivers from the boot volume
/* The disk subsystem is initialized here and the SystemRoot is set too.
* We can finally load other drivers from the boot volume. */
PnPBootDriversInitialized = TRUE;
#if !defined(_WINKD_) && defined(KDBG)
@ -640,7 +640,7 @@ IoInitSystem(IN PLOADER_PARAMETER_BLOCK LoaderBlock)
return FALSE;
}
/* Load the System DLL and its Entrypoints */
/* Load the System DLL and its entrypoints */
Status = PsLocateSystemDll();
if (!NT_SUCCESS(Status))
{

View file

@ -39,7 +39,7 @@ IopTimerDispatch(IN PKDPC Dpc,
PIO_TIMER Timer;
ULONG i;
/* Check if any Timers are actualyl enabled as of now */
/* Check if any Timers are actually enabled as of now */
if (IopTimerCount)
{
/* Lock the Timers */

View file

@ -36,7 +36,7 @@ KdpGetDebugMode(PCHAR Currentp2)
/* Check for Serial Debugging */
else if (!_strnicmp(p2, "COM", 3))
{
/* Gheck for a valid Serial Port */
/* Check for a valid Serial Port */
p2 += 3;
if (*p2 != ':')
{

View file

@ -3832,7 +3832,8 @@ KdbpCliInit(VOID)
}
/* Get the size of the file */
Status = ZwQueryInformationFile(hFile, &Iosb, &FileStdInfo, sizeof(FileStdInfo),
Status = ZwQueryInformationFile(hFile, &Iosb,
&FileStdInfo, sizeof(FileStdInfo),
FileStandardInformation);
if (!NT_SUCCESS(Status))
{
@ -3855,7 +3856,7 @@ KdbpCliInit(VOID)
Status = ZwReadFile(hFile, NULL, NULL, NULL, &Iosb, FileBuffer, FileSize, NULL, NULL);
ZwClose(hFile);
if (!NT_SUCCESS(Status) && Status != STATUS_END_OF_FILE)
if (!NT_SUCCESS(Status) && (Status != STATUS_END_OF_FILE))
{
ExFreePool(FileBuffer);
DPRINT("Could not read KDBinit file into memory (Status 0x%lx)\n", Status);