mirror of
https://github.com/reactos/reactos.git
synced 2024-12-03 00:13:32 +08:00
[NTOSKRNL] Also try to extract name from FCB when leaking VACB
This commit is contained in:
parent
43836b0fbb
commit
2ea6de8a42
@ -1143,6 +1143,13 @@ CcRosDeleteFileCache (
|
||||
{
|
||||
DPRINT1("File was: %wZ\n", &FileObject->FileName);
|
||||
}
|
||||
else if (FileObject->FsContext != NULL &&
|
||||
((PFSRTL_COMMON_FCB_HEADER)(FileObject->FsContext))->NodeTypeCode == 0x0502 &&
|
||||
((PFSRTL_COMMON_FCB_HEADER)(FileObject->FsContext))->NodeByteSize == 0x1F8 &&
|
||||
((PUNICODE_STRING)(((PUCHAR)FileObject->FsContext) + 0x100))->Length != 0)
|
||||
{
|
||||
DPRINT1("File was: %wZ (FastFAT)\n", (PUNICODE_STRING)(((PUCHAR)FileObject->FsContext) + 0x100));
|
||||
}
|
||||
else
|
||||
{
|
||||
DPRINT1("No name for the file\n");
|
||||
|
Loading…
Reference in New Issue
Block a user