mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-29 19:26:33 +00:00
[NTOSKRNL]
Properly set the position in name string when matching DOS_STAR wildcard. This fixed 6 failing tests. svn path=/trunk/; revision=57848
This commit is contained in:
@@ -220,7 +220,7 @@ FsRtlIsDbcsInExpression(IN PANSI_STRING Expression,
|
||||
{
|
||||
if (Name->Buffer[MatchingChars] == '.')
|
||||
{
|
||||
NamePosition = MatchingChars;
|
||||
NamePosition = MatchingChars + 1;
|
||||
}
|
||||
MatchingChars++;
|
||||
}
|
||||
|
||||
@@ -156,7 +156,7 @@ FsRtlIsNameInExpressionPrivate(IN PUNICODE_STRING Expression,
|
||||
{
|
||||
if (Name->Buffer[MatchingChars] == L'.')
|
||||
{
|
||||
NamePosition = MatchingChars;
|
||||
NamePosition = MatchingChars + 1;
|
||||
}
|
||||
MatchingChars++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user