https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4585372c6ddd86c02ee84…
commit 4585372c6ddd86c02ee84f9252a529d549af1cad
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Mon Jan 9 12:11:19 2023 +0100
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Thu Mar 9 18:26:02 2023 +0100
[NTOS:IO/KD/KDBG] Formatting fixes only.
---
ntoskrnl/io/iomgr/iomgr.c | 6 +++---
ntoskrnl/io/iomgr/iotimer.c | 2 +-
ntoskrnl/kd/kdmain.c | 2 +-
ntoskrnl/kdbg/kdb_cli.c | 5 +++--
4 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/ntoskrnl/io/iomgr/iomgr.c b/ntoskrnl/io/iomgr/iomgr.c
index 0e901c605e9..380a8518661 100644
--- a/ntoskrnl/io/iomgr/iomgr.c
+++ b/ntoskrnl/io/iomgr/iomgr.c
@@ -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))
{
diff --git a/ntoskrnl/io/iomgr/iotimer.c b/ntoskrnl/io/iomgr/iotimer.c
index 9c62db19a11..4bd8ab2ca1f 100644
--- a/ntoskrnl/io/iomgr/iotimer.c
+++ b/ntoskrnl/io/iomgr/iotimer.c
@@ -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 */
diff --git a/ntoskrnl/kd/kdmain.c b/ntoskrnl/kd/kdmain.c
index 76e28962a98..073a128ef3a 100644
--- a/ntoskrnl/kd/kdmain.c
+++ b/ntoskrnl/kd/kdmain.c
@@ -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 != ':')
{
diff --git a/ntoskrnl/kdbg/kdb_cli.c b/ntoskrnl/kdbg/kdb_cli.c
index 4a351db9afe..114f4116838 100644
--- a/ntoskrnl/kdbg/kdb_cli.c
+++ b/ntoskrnl/kdbg/kdb_cli.c
@@ -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);
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2f43d9c18338722999f18…
commit 2f43d9c18338722999f18630dabd77821a1d79cb
Author: Doug Lyons <douglyons(a)douglyons.com>
AuthorDate: Wed Mar 8 14:47:45 2023 -0600
Commit: GitHub <noreply(a)github.com>
CommitDate: Wed Mar 8 21:47:45 2023 +0100
[MSAFD] Work around regression of CORE-18848 from 0.4.12-dev-693-g2b1f6c8 (#5102)
Fix winetest for ws2_32:sock that crashes on 'test_AcceptEX' by modifying return values of WSPIoctl for 'case SIO_GET_EXTENSION_FUNCTION_POINTER'
---
dll/win32/msafd/misc/dllmain.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/dll/win32/msafd/misc/dllmain.c b/dll/win32/msafd/misc/dllmain.c
index 7723b93d236..a4cded75c00 100644
--- a/dll/win32/msafd/misc/dllmain.c
+++ b/dll/win32/msafd/misc/dllmain.c
@@ -2513,7 +2513,12 @@ WSPIoctl(IN SOCKET Handle,
*((PVOID *)lpvOutBuffer) = WSPGetAcceptExSockaddrs;
cbRet = sizeof(PVOID);
Errno = NO_ERROR;
- Ret = NO_ERROR;
+ /* See CORE-14966 and associated commits.
+ * Original line below was 'Ret = NO_ERROR:'.
+ * This caused winetest ws2_32:sock to hang.
+ * This new Ret value allows the test to complete. */
+ ERR("SIO_GET_EXTENSION_FUNCTION_POINTER UNIMPLEMENTED\n");
+ Ret = SOCKET_ERROR;
}
else
{