From 29b21cef0dc849f3a10c6828381c2758cdb56c5c Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Sat, 13 Feb 2016 12:02:46 -0800 Subject: [PATCH] sys: IRP_MJ_QUERY_INFORMATION: FileNormalizedNameInformation --- src/sys/fileinfo.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sys/fileinfo.c b/src/sys/fileinfo.c index bf03699c..0d793e8b 100644 --- a/src/sys/fileinfo.c +++ b/src/sys/fileinfo.c @@ -385,6 +385,7 @@ static NTSTATUS FspFsvolQueryInformation( Irp->IoStatus.Information = (UINT_PTR)((PUINT8)Buffer - (PUINT8)Irp->AssociatedIrp.SystemBuffer); return Result; case FileNameInformation: + case FileNormalizedNameInformation: Result = FspFsvolQueryNameInformation(FileObject, &Buffer, BufferEnd); Irp->IoStatus.Information = (UINT_PTR)((PUINT8)Buffer - (PUINT8)Irp->AssociatedIrp.SystemBuffer); return Result;