mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[NTOSKRNL]
Fix a few tests with FsRtlIs*InExpression() svn path=/trunk/; revision=58841
This commit is contained in:
parent
8f3328160c
commit
df801f3d4c
2 changed files with 8 additions and 0 deletions
|
@ -285,6 +285,10 @@ FsRtlIsDbcsInExpression(IN PANSI_STRING Expression,
|
|||
/* If we are beyond name, we null match */
|
||||
if (BeyondName)
|
||||
{
|
||||
if (Name->Buffer[NamePosition] == '.')
|
||||
{
|
||||
NamePosition++;
|
||||
}
|
||||
ExpressionPosition++;
|
||||
continue;
|
||||
}
|
||||
|
|
|
@ -216,6 +216,10 @@ FsRtlIsNameInExpressionPrivate(IN PUNICODE_STRING Expression,
|
|||
/* If we are beyond name, we null match */
|
||||
if (BeyondName)
|
||||
{
|
||||
if (Name->Buffer[NamePosition] == L'.')
|
||||
{
|
||||
NamePosition++;
|
||||
}
|
||||
ExpressionPosition++;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue