mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +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)
|
else if (FileInformationClass == FileStandardInformation)
|
||||||
{
|
{
|
||||||
/* use FastIoQueryBasicInfo routine */
|
/* use FastIoQueryStandardInfo routine */
|
||||||
if (FastIoDispatch->FastIoQueryBasicInfo)
|
if (FastIoDispatch->FastIoQueryStandardInfo)
|
||||||
{
|
{
|
||||||
return FastIoDispatch->FastIoQueryStandardInfo(FileObject, TRUE, (PFILE_STANDARD_INFORMATION)FileInformation, &IoStatus, DeviceObject);
|
return FastIoDispatch->FastIoQueryStandardInfo(FileObject, TRUE, (PFILE_STANDARD_INFORMATION)FileInformation, &IoStatus, DeviceObject);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue