Author: amunger
Date: Tue Mar 13 14:28:18 2007
New Revision: 26068
URL: http://svn.reactos.org/svn/reactos?rev=26068&view=rev
Log:
Typo fixes, patch by our friend Coviti.
Modified:
trunk/reactos/base/shell/cmd/en-US.rc
Modified: trunk/reactos/base/shell/cmd/en-US.rc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/en-US.rc?re…
==============================================================================
--- trunk/reactos/base/shell/cmd/en-US.rc (original)
+++ trunk/reactos/base/shell/cmd/en-US.rc Tue Mar 13 14:28:18 2007
@@ -137,7 +137,7 @@
/T display only\n\n\
Type DATE without parameters to display the current date setting and\n\
a prompt for a new one. Press ENTER to keep the same date.\n"
-
+
STRING_DEL_HELP1, "Deletes one or more files.\n\n\
DEL [/N /P /T /Q /S /W /Y /Z /A[[:]attributes]] file ...\n\
DELETE [/N /P /T /Q /S /W /Y /Z /A[[:]attributes]] file ...\n\
@@ -389,14 +389,14 @@
STRING_REN_HELP2, " %lu file renamed\n"
STRING_REN_HELP3, " %lu files renamed\n"
-
+
STRING_SHIFT_HELP, "Changes the position of replaceable parameters in a batch file.\n\n\
SHIFT [DOWN]"
STRING_SCREEN_HELP, "move cursor and optionally print text\n\n\
SCREEN row col [text]\n\n\
- row row to wich move the cursor\n\
- col column to wich move the cursor"
+ row row to which move the cursor\n\
+ col column to which move the cursor"
STRING_SET_HELP, "Displays, sets, or removes environment variables.\n\n\
SET [variable[=][string]]\n\n\
@@ -498,7 +498,7 @@
STRING_WINDOW_HELP2, "change console window aspect\n\n\
ACTIVATE 'window' [/POS[=]left,top,width,heigth]\n\
[MIN|MAX|RESTORE] ['title']\n\n\
-window tile of window on wich perform actions\n\
+window tile of window on which perform actions\n\
/POS specify window placement and dimensions\n\
MIN minimize the window\n\
MAX maximize the window\n\
@@ -531,7 +531,7 @@
GOTO Directs the ReactOS command interpreter to a labeled line in\n\
a batch program.\n\
HELP Provides Help information for ReactOS commands.\n\
-HISTORY List alle commands which has been used\n\
+HISTORY List all commands which has been used\n\
IF Performs conditional processing in batch programs.\n\
LABEL Creates, changes, or deletes the volume label of a disk.\n\
MD Creates a directory.\n\
@@ -599,7 +599,7 @@
STRING_ERROR_ERROR2, "Syntax error"
STRING_FOR_ERROR1, "'in' missing in for statement."
STRING_FOR_ERROR2, "no brackets found."
-STRING_FOR_ERROR3, "'do' missing."
+STRING_FOR_ERROR3, "'do' missing."
STRING_FOR_ERROR4, "no command after 'do'."
STRING_FREE_ERROR1, "Invalid drive"
STRING_FREE_ERROR2, "unlabeled"
Author: greatlrd
Date: Sun Mar 11 17:01:22 2007
New Revision: 26062
URL: http://svn.reactos.org/svn/reactos?rev=26062&view=rev
Log:
forget clear a value in gdientry2
Modified:
trunk/reactos/dll/win32/gdi32/misc/gdientry.c
Modified: trunk/reactos/dll/win32/gdi32/misc/gdientry.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/gdi32/misc/gdien…
==============================================================================
--- trunk/reactos/dll/win32/gdi32/misc/gdientry.c (original)
+++ trunk/reactos/dll/win32/gdi32/misc/gdientry.c Sun Mar 11 17:01:22 2007
@@ -473,6 +473,7 @@
RtlZeroMemory(&D3dCallbacks, sizeof(D3DNTHAL_CALLBACKS));
RtlZeroMemory(&D3dDriverData, sizeof(D3DNTHAL_GLOBALDRIVERDATA));
RtlZeroMemory(&D3dBufferCallbacks, sizeof(DD_D3DBUFCALLBACKS));
+ RtlZeroMemory(CallbackFlags, sizeof(DWORD)*3);
/* Check if we got a list pointer */
if (pvmList)
Author: ion
Date: Sun Mar 11 03:42:18 2007
New Revision: 26061
URL: http://svn.reactos.org/svn/reactos?rev=26061&view=rev
Log:
- Release dispatcher lock if gate is already signaled.
See issue #2083 for more details.
Modified:
trunk/reactos/ntoskrnl/ke/gate.c
Modified: trunk/reactos/ntoskrnl/ke/gate.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/gate.c?rev=260…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/gate.c (original)
+++ trunk/reactos/ntoskrnl/ke/gate.c Sun Mar 11 03:42:18 2007
@@ -75,6 +75,9 @@
KiReleaseDispatcherObject(&Gate->Header);
KiReleaseThreadLock(Thread);
+ /* Release the gate lock */
+ if (Queue) KiReleaseDispatcherLockFromDpcLevel();
+
/* Release the APC lock and return */
KiReleaseApcLock(&ApcLock);
break;