mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 17:05:45 +00:00
[FASTFAT]
Don't report success for unsupported file information classes. See issue #6628 for more details. svn path=/trunk/; revision=54340
This commit is contained in:
parent
6fc023d62d
commit
63cc791584
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ static NTSTATUS DoQuery (PVFAT_IRP_CONTEXT IrpContext)
|
|||
default:
|
||||
RC = STATUS_INVALID_INFO_CLASS;
|
||||
}
|
||||
if (RC == STATUS_BUFFER_OVERFLOW)
|
||||
if (RC == STATUS_BUFFER_OVERFLOW || RC == STATUS_INVALID_INFO_CLASS)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue