mirror of
https://github.com/reactos/reactos.git
synced 2024-12-13 14:13:36 +08:00
[NTOSKRNL] Properly compare position to name length in FsRtlIsNameInExpressionPrivate
CORE-15902
This commit is contained in:
parent
5d5e9c8486
commit
21d2c70bb4
@ -200,7 +200,7 @@ FsRtlIsNameInExpressionPrivate(IN PUNICODE_STRING Expression,
|
||||
DontSkipDot = TRUE;
|
||||
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'.')
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user