https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d4d897ccb72d3c22824b9…
commit d4d897ccb72d3c22824b955e174ed67df85cb77c
Author: pivotman319 <15126754+pivotman319-new(a)users.noreply.github.com>
AuthorDate: Sun Feb 21 16:48:20 2021 +0100
Commit: GitHub <noreply(a)github.com>
CommitDate: Sun Feb 21 18:48:20 2021 +0300
[README] Trivial correction: replace "Seven" with "7" (#3469)
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index bb0a9a603a0..6ed73613325 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@
## What is ReactOS?
-ReactOS™ is an Open Source effort to develop a quality operating system that is compatible with applications and drivers written for the Microsoft® Windows™ NT family of operating systems (NT4, 2000, XP, 2003, Vista, Seven).
+ReactOS™ is an Open Source effort to develop a quality operating system that is compatible with applications and drivers written for the Microsoft® Windows™ NT family of operating systems (NT4, 2000, XP, 2003, Vista, 7).
The ReactOS project, although currently focused on Windows Server 2003 compatibility, is always keeping an eye toward compatibility with Windows Vista and future Windows NT releases.
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9ff015f770be41f04ca91…
commit 9ff015f770be41f04ca9184e32be02c2db9fae69
Author: Eric Kohl <eric.kohl(a)reactos.org>
AuthorDate: Sun Feb 21 15:49:06 2021 +0100
Commit: Eric Kohl <eric.kohl(a)reactos.org>
CommitDate: Sun Feb 21 15:49:06 2021 +0100
[NTOS:CM] Report key creation to the notify code
---
ntoskrnl/config/cmparse.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/ntoskrnl/config/cmparse.c b/ntoskrnl/config/cmparse.c
index 872a79619ae..c5376cf083d 100644
--- a/ntoskrnl/config/cmparse.c
+++ b/ntoskrnl/config/cmparse.c
@@ -379,6 +379,12 @@ CmpDoCreateChild(IN PHHIVE Hive,
/* Now that the security descriptor is copied in the hive, we can free the original */
SeDeassignSecurity(&NewDescriptor);
+ if (NT_SUCCESS(Status))
+ {
+ /* Send notification to registered callbacks */
+ CmpReportNotify(Kcb, Hive, Kcb->KeyCell, REG_NOTIFY_CHANGE_NAME);
+ }
+
Quickie:
/* Check if we got here because of failure */
if (!NT_SUCCESS(Status))