mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 16:31:07 +08:00
[NTOSKRNL] Addendum to 21d2c70: properly start DOS_START loop
Fixes last failing test. CORE-15902
This commit is contained in:
committed by
Pierre Schweitzer
parent
d29e216f99
commit
e9b438bfaa
@@ -200,7 +200,7 @@ FsRtlIsNameInExpressionPrivate(IN PUNICODE_STRING Expression,
|
||||
DontSkipDot = TRUE;
|
||||
if (!EndOfName && Name->Buffer[NamePosition] == '.')
|
||||
{
|
||||
for (Position = NamePosition - 1; Position < Name->Length / sizeof(WCHAR); Position++)
|
||||
for (Position = NamePosition + 1; Position < Name->Length / sizeof(WCHAR); Position++)
|
||||
{
|
||||
if (Name->Buffer[Position] == L'.')
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user