mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:56:00 +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 we are beyond name, we null match */
|
||||||
if (BeyondName)
|
if (BeyondName)
|
||||||
{
|
{
|
||||||
|
if (Name->Buffer[NamePosition] == '.')
|
||||||
|
{
|
||||||
|
NamePosition++;
|
||||||
|
}
|
||||||
ExpressionPosition++;
|
ExpressionPosition++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
|
@ -216,6 +216,10 @@ FsRtlIsNameInExpressionPrivate(IN PUNICODE_STRING Expression,
|
||||||
/* If we are beyond name, we null match */
|
/* If we are beyond name, we null match */
|
||||||
if (BeyondName)
|
if (BeyondName)
|
||||||
{
|
{
|
||||||
|
if (Name->Buffer[NamePosition] == L'.')
|
||||||
|
{
|
||||||
|
NamePosition++;
|
||||||
|
}
|
||||||
ExpressionPosition++;
|
ExpressionPosition++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue