https://git.reactos.org/?p=reactos.git;a=commitdiff;h=337e7322a659134e84d25…
commit 337e7322a659134e84d25295cff90c52f1591dcf
Author: Bișoc George <fraizeraust99(a)gmail.com>
AuthorDate: Fri May 11 20:28:44 2018 +0200
Commit: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito(a)reactos.org>
CommitDate: Fri May 11 23:34:52 2018 +0200
[INETCPL] Fix a typo in Romanian resource file
---
dll/cpl/inetcpl/lang/ro-RO.rc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dll/cpl/inetcpl/lang/ro-RO.rc b/dll/cpl/inetcpl/lang/ro-RO.rc
index 37d6127db3..aae5f967cb 100644
--- a/dll/cpl/inetcpl/lang/ro-RO.rc
+++ b/dll/cpl/inetcpl/lang/ro-RO.rc
@@ -66,7 +66,7 @@ FONT 8, "MS Shell Dlg"
CAPTION "Eliminare istoric de navigare"
BEGIN
- AUTOCHECKBOX "Fișierele de internet t&emporare\nCópii ale paginilor temporar stocate, imagini și certificate.",
+ AUTOCHECKBOX "Fișierele de internet t&emporare\nCopii ale paginilor temporar stocate, imagini și certificate.",
IDC_DELETE_TEMP_FILES, 10, 8, 230, 40, BS_TOP | BS_MULTILINE
AUTOCHECKBOX "Informațiile de &conexiune (Cookies)\nFișiere cu date precum informații de autentificare sau preferințe, stocate în calculatorul dumneavoastră din paginile vizitate.",
IDC_DELETE_COOKIES, 10, 48, 230, 40, BS_TOP | BS_MULTILINE
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7eca874824870e69678b6…
commit 7eca874824870e69678b6eb79b761d464bdb1e67
Author: Pierre Schweitzer <pierre(a)reactos.org>
AuthorDate: Thu May 10 10:33:05 2018 +0200
Commit: Pierre Schweitzer <pierre(a)reactos.org>
CommitDate: Thu May 10 10:49:17 2018 +0200
[NTOSKRNL] Fix FsRtlStackOverflow work item free.
Oneliner of the day... This typo just prevented the
whole feature to work properly. Because any allocated
work item would miserably fail to be freed.
This will obviously help real world FSD relying on
StackOverflow worker from FsRtl to work better!
CORE-14611
---
ntoskrnl/fsrtl/stackovf.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ntoskrnl/fsrtl/stackovf.c b/ntoskrnl/fsrtl/stackovf.c
index 9016fce5da..353e893aa7 100644
--- a/ntoskrnl/fsrtl/stackovf.c
+++ b/ntoskrnl/fsrtl/stackovf.c
@@ -61,7 +61,7 @@ FsRtlStackOverflowRead(IN PVOID Context)
/* Otherwise, free the work item */
else
{
- ExFreePoolWithTag(WorkItem, 'Fsrs');
+ ExFreePoolWithTag(WorkItem, 'FSrs');
}
/* Reset top level */