mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[KS] KsQueryInformationFile(): Fix 'FastIoQueryBasicInfo' copypasta (#2236)
Addendum to commit 4725a4fd
(r42117).
This commit is contained in:
parent
fa42794a3a
commit
e2b536bcb1
1 changed files with 2 additions and 2 deletions
|
@ -375,8 +375,8 @@ KsQueryInformationFile(
|
|||
}
|
||||
else if (FileInformationClass == FileStandardInformation)
|
||||
{
|
||||
/* use FastIoQueryBasicInfo routine */
|
||||
if (FastIoDispatch->FastIoQueryBasicInfo)
|
||||
/* use FastIoQueryStandardInfo routine */
|
||||
if (FastIoDispatch->FastIoQueryStandardInfo)
|
||||
{
|
||||
return FastIoDispatch->FastIoQueryStandardInfo(FileObject, TRUE, (PFILE_STANDARD_INFORMATION)FileInformation, &IoStatus, DeviceObject);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue