https://git.reactos.org/?p=reactos.git;a=commitdiff;h=a01398b034e7da79f44c6…
commit a01398b034e7da79f44c6a540d1a334989fa4974
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Thu Dec 30 03:40:40 2021 +0100
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Thu Dec 30 03:42:00 2021 +0100
[FREELDR] Adjust a boot-options editor example.
---
boot/freeldr/freeldr/custom.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/boot/freeldr/freeldr/custom.c b/boot/freeldr/freeldr/custom.c
index 2422107d58e..ca8b4c612f0 100644
--- a/boot/freeldr/freeldr/custom.c
+++ b/boot/freeldr/freeldr/custom.c
@@ -37,7 +37,7 @@ const CHAR BootPartitionPrompt[] = "Enter the boot partition.\n\nEnter 0 for the
const CHAR ARCPathPrompt[] = "Enter the boot ARC path.\n\nExamples:\nmulti(0)disk(0)rdisk(0)partition(1)\nmulti(0)disk(0)fdisk(0)";
const CHAR ReactOSSystemPathPrompt[] = "Enter the path to your ReactOS system directory.\n\nExamples:\n\\REACTOS\n\\ROS";
const CHAR ReactOSOptionsPrompt[] = "Enter the load options you want passed to the kernel.\n\nExamples:\n/DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200\n/FASTDETECT /SOS /NOGUIBOOT\n/BASEVIDEO /MAXMEM=64\n/KERNEL=NTKRNLMP.EXE /HAL=HALMPS.DLL";
-const CHAR ReactOSSetupOptionsPrompt[] = "Enter additional load options you want passed to the ReactOS Setup.\nThese options will supplement those obtained from the TXTSETUP.SIF\nfile, unless you also specify the /SIFOPTIONSOVERRIDE option switch.\n\nExample:\n/NOGUIBOOT /DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200";
+const CHAR ReactOSSetupOptionsPrompt[] = "Enter additional load options you want passed to the ReactOS Setup.\nThese options will supplement those obtained from the TXTSETUP.SIF\nfile, unless you also specify the /SIFOPTIONSOVERRIDE option switch.\n\nExample:\n/DEBUG /DEBUGPORT=COM1 /BAUDRATE=115200 /NOGUIBOOT";
const CHAR CustomBootPrompt[] = "Press ENTER to boot your custom boot setup.";
/* FUNCTIONS ******************************************************************/
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f18fb7da0918f48310c9c…
commit f18fb7da0918f48310c9ceeaffe7df7d2e300017
Author: Stanislav Motylkov <x86corez(a)gmail.com>
AuthorDate: Thu Dec 30 01:54:09 2021 +0300
Commit: Stanislav Motylkov <x86corez(a)gmail.com>
CommitDate: Thu Dec 30 01:54:09 2021 +0300
[NTOS:MM] Unrefernece some dereferences
---
ntoskrnl/mm/ARM3/virtual.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ntoskrnl/mm/ARM3/virtual.c b/ntoskrnl/mm/ARM3/virtual.c
index 9cb0cacf23b..abe0e810074 100644
--- a/ntoskrnl/mm/ARM3/virtual.c
+++ b/ntoskrnl/mm/ARM3/virtual.c
@@ -1842,7 +1842,7 @@ MiQueryMemoryBasicInformation(IN HANDLE ProcessHandle,
/* Check if we were attached */
if (ProcessHandle != NtCurrentProcess())
{
- /* Detach and derefernece the process */
+ /* Detach and dereference the process */
KeUnstackDetachProcess(&ApcState);
ObDereferenceObject(TargetProcess);
}
@@ -1955,7 +1955,7 @@ MiQueryMemoryBasicInformation(IN HANDLE ProcessHandle,
/* Check if we were attached */
if (ProcessHandle != NtCurrentProcess())
{
- /* Detach and derefernece the process */
+ /* Detach and dereference the process */
KeUnstackDetachProcess(&ApcState);
ObDereferenceObject(TargetProcess);
}
@@ -5617,7 +5617,7 @@ FinalPath:
goto FinalPath;
//
- // In the failure path, we detach and derefernece the target process, and
+ // In the failure path, we detach and dereference the target process, and
// return whatever failure code was sent.
//
FailPath: