mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[NTOSKRNL]
Properly compute file name length for output buffer CORE-2582 svn path=/trunk/; revision=62484
This commit is contained in:
@@ -494,7 +494,7 @@ FsRtlNotifyUpdateBuffer(OUT PFILE_NOTIFY_INFORMATION OutputBuffer,
|
||||
{
|
||||
OutputBuffer->NextEntryOffset = 0;
|
||||
OutputBuffer->Action = Action;
|
||||
OutputBuffer->FileNameLength = DataLength - sizeof(FILE_NOTIFY_INFORMATION);
|
||||
OutputBuffer->FileNameLength = DataLength - FIELD_OFFSET(FILE_NOTIFY_INFORMATION, FileName);
|
||||
if (IsUnicode)
|
||||
{
|
||||
if (ParentName->Length)
|
||||
|
||||
Reference in New Issue
Block a user