mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 08:50:24 +08:00
[NTOSKRNL] Properly compare position to name length in FsRtlIsNameInExpressionPrivate
CORE-15902
This commit is contained in:
committed by
Pierre Schweitzer
parent
5d5e9c8486
commit
21d2c70bb4
@@ -200,7 +200,7 @@ FsRtlIsNameInExpressionPrivate(IN PUNICODE_STRING Expression,
|
|||||||
DontSkipDot = TRUE;
|
DontSkipDot = TRUE;
|
||||||
if (!EndOfName && Name->Buffer[NamePosition] == '.')
|
if (!EndOfName && Name->Buffer[NamePosition] == '.')
|
||||||
{
|
{
|
||||||
for (Position = NamePosition - 1; Position < Name->Length; Position++)
|
for (Position = NamePosition - 1; Position < Name->Length / sizeof(WCHAR); Position++)
|
||||||
{
|
{
|
||||||
if (Name->Buffer[Position] == L'.')
|
if (Name->Buffer[Position] == L'.')
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user