https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4a93b0a4638e9dc14c555…
commit 4a93b0a4638e9dc14c555de10534099344f92504
Author: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
AuthorDate: Fri Nov 18 16:17:30 2022 +0100
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Fri Nov 18 18:11:28 2022 +0100
[NTOS:IO] Show the captured/generated driver name in one failure path of IoCreateDriver.
---
ntoskrnl/io/iomgr/driver.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ntoskrnl/io/iomgr/driver.c b/ntoskrnl/io/iomgr/driver.c
index 8107c4906ed..c81e4714542 100644
--- a/ntoskrnl/io/iomgr/driver.c
+++ b/ntoskrnl/io/iomgr/driver.c
@@ -643,7 +643,7 @@ IopInitializeDriverModule(
driverObject->Flags &= ~DRVO_LEGACY_DRIVER;
}
- // Windows does this fixup - keep it for compatibility
+ /* Windows does this fixup, keep it for compatibility */
for (INT i = 0; i <= IRP_MJ_MAXIMUM_FUNCTION; i++)
{
/*
@@ -1695,13 +1695,13 @@ try_again:
if (!NT_SUCCESS(Status))
{
/* If it didn't work, then kill the object */
- DPRINT1("'%wZ' initialization failed, status (0x%08lx)\n", DriverName, Status);
+ DPRINT1("'%wZ' initialization failed, status (0x%08lx)\n", &LocalDriverName, Status);
ObMakeTemporaryObject(DriverObject);
ObDereferenceObject(DriverObject);
return Status;
}
- // Windows does this fixup - keep it for compatibility
+ /* Windows does this fixup, keep it for compatibility */
for (i = 0; i <= IRP_MJ_MAXIMUM_FUNCTION; i++)
{
/*
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9c5bb096bc21cee00a8b8…
commit 9c5bb096bc21cee00a8b8968214d24d5c5500d88
Author: Joachim Henze <joachim.henze(a)reactos.org>
AuthorDate: Fri Nov 18 12:42:32 2022 +0100
Commit: GitHub <noreply(a)github.com>
CommitDate: Fri Nov 18 12:42:32 2022 +0100
[COMCTL32] Remove a rosdiff TOOLBAR_EraseBackground() (#4887)
This fixes the toolbar in FileZilla 3.8 being drawn wrong (grey)
It regressed by 0.4.15-dev-1603-g 232c45fcd71b12a0d726b47f4a72e9a16f87432a
And todays fix is a partial revert of that guilty rev.
The reverted part is not even necessarily needed for what we had in mind back then,
It was just a first tiny step with the aim to get rid of the comctl32.h changes of that commit.
But that goal was and even is far out of reach for many other reasons also.
Actually we should have reverted the toolbar.c change back then already,
before committing the "flipfix9".
CORE-18263
---
dll/win32/comctl32/toolbar.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/dll/win32/comctl32/toolbar.c b/dll/win32/comctl32/toolbar.c
index b725f3c5121..e2b6193b663 100644
--- a/dll/win32/comctl32/toolbar.c
+++ b/dll/win32/comctl32/toolbar.c
@@ -6603,10 +6603,6 @@ TOOLBAR_Paint (TOOLBAR_INFO *infoPtr, WPARAM wParam)
TRACE("psrect=(%s)\n", wine_dbgstr_rect(&ps.rcPaint));
-#ifdef __REACTOS__
- TOOLBAR_EraseBackground(infoPtr, (WPARAM)hdc, (LPARAM) 0);
-#endif
-
TOOLBAR_Refresh (infoPtr, hdc, &ps);
if (!wParam) EndPaint (infoPtr->hwndSelf, &ps);
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=bcb9abc133e173c5bdabc…
commit bcb9abc133e173c5bdabc50b823ec6b6a38b69fb
Author: Joachim Henze <Joachim.Henze(a)reactos.org>
AuthorDate: Wed Nov 16 23:08:52 2022 +0100
Commit: Joachim Henze <Joachim.Henze(a)reactos.org>
CommitDate: Wed Nov 16 23:08:52 2022 +0100
[SYSDM][SMSS] Addendum to (#4843) (#4844) CORE-18574
[SYSDM] Prevent my german-teacher from getting a heart-attack by that misplaced comma.
[SMSS] Prevent myself from getting a heart-attack by that superfluous dot.
Furthermore this addendum serves the purpose of actually linking both PRs
and their 4 previous commits to the actual JIRA ticket CORE-18754, which wasn't
the case before:
0.4.15-dev-5392-g 04b2d35f5b7372578891d1d455ca5e0e669d7644
0.4.15-dev-5391-g a8e06d92e8f3f7605024c28fb16ce37251b09276
0.4.15-dev-5390-g a4274ad54837287bca58ca698b5a0ce237d0fd9d
0.4.15-dev-5389-g 5dc43c0f323da21d67e5604bcf4a44f9b1988d75
---
base/system/smss/pagefile.c | 2 +-
dll/cpl/sysdm/lang/de-DE.rc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/base/system/smss/pagefile.c b/base/system/smss/pagefile.c
index c8115955c4f..ae26de36cc7 100644
--- a/base/system/smss/pagefile.c
+++ b/base/system/smss/pagefile.c
@@ -512,7 +512,7 @@ SmpCreatePagingFile(IN PUNICODE_STRING Name,
Status = NtCreatePagingFile(Name, MinSize, MaxSize, Priority);
if (NT_SUCCESS(Status))
{
- DPRINT("SMSS:PFILE: NtCreatePagingFile(%wZ, 0x%I64X, 0x%I64X) succeeded.\n",
+ DPRINT("SMSS:PFILE: NtCreatePagingFile(%wZ, 0x%I64X, 0x%I64X) succeeded\n",
Name,
MinSize->QuadPart,
MaxSize->QuadPart);
diff --git a/dll/cpl/sysdm/lang/de-DE.rc b/dll/cpl/sysdm/lang/de-DE.rc
index a76aef59525..b29208c7af4 100644
--- a/dll/cpl/sysdm/lang/de-DE.rc
+++ b/dll/cpl/sysdm/lang/de-DE.rc
@@ -366,7 +366,7 @@ BEGIN
IDS_WARNINITIALSIZE "Geben Sie einen numerischen Wert für die Anfangsgröße der Auslagerungsdatei an."
IDS_WARNMAXIMUMSIZE "Geben Sie einen numerischen Wert für die Maximalgröße der Auslagerungsdatei an."
IDS_WARNINITIALRANGE "Die Anfangsgröße der Auslagerungsdatei muss zwischen 2 MB und %lu MB auf dem gewählten Laufwerk sein."
- IDS_WARNMAXIMUMRANGE "Die Maximalgröße der Auslagerungsdatei darf nicht kleiner als die Anfangsgröße sein, und muss kleiner als %lu MB auf dem gewählten Laufwerk sein."
+ IDS_WARNMAXIMUMRANGE "Die Maximalgröße der Auslagerungsdatei darf nicht kleiner als die Anfangsgröße und muss kleiner als %lu MB auf dem gewählten Laufwerk sein."
IDS_PAGEFILE_MB "%lu MB"
IDS_PAGEFILE_NONE "Keine"
IDS_PAGEFILE_SYSTEM "Systemverwaltet"