[NTOSKRNL]

Fix a few tests with FsRtlIs*InExpression()

svn path=/trunk/; revision=58841
This commit is contained in:
Pierre Schweitzer 2013-04-24 14:21:26 +00:00
parent 8f3328160c
commit df801f3d4c
2 changed files with 8 additions and 0 deletions

View file

@ -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;
}

View file

@ -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;
}