[NTOSKRNL]

Properly compute file name length for output buffer
CORE-2582

svn path=/trunk/; revision=62484
This commit is contained in:
Pierre Schweitzer 2014-03-12 19:54:08 +00:00
parent a0173baa19
commit 3d31a14caa

View file

@ -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)