From 6ae4b24c9785f78f99e7557bdafb0d8bf22e7856 Mon Sep 17 00:00:00 2001 From: Hartmut Birr Date: Sun, 10 Aug 2003 20:01:16 +0000 Subject: [PATCH] - Fixed the test for the start vcn in VfatGetRetrievalPointers. svn path=/trunk/; revision=5509 --- reactos/drivers/fs/vfat/fsctl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/drivers/fs/vfat/fsctl.c b/reactos/drivers/fs/vfat/fsctl.c index c6948095758..57849fce90e 100644 --- a/reactos/drivers/fs/vfat/fsctl.c +++ b/reactos/drivers/fs/vfat/fsctl.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: fsctl.c,v 1.21 2003/08/07 11:47:32 silverblade Exp $ +/* $Id: fsctl.c,v 1.22 2003/08/10 20:01:16 hbirr Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS kernel @@ -466,7 +466,7 @@ VfatGetRetrievalPointers(PVFAT_IRP_CONTEXT IrpContext) MaxExtentCount = ((Stack->Parameters.DeviceIoControl.OutputBufferLength - sizeof(GET_RETRIEVAL_DESCRIPTOR)) / sizeof(MAPPING_PAIR)); - if (Vcn.QuadPart >= Fcb->RFCB.FileSize.QuadPart / DeviceExt->FatInfo.BytesPerCluster) + if (Vcn.QuadPart >= Fcb->RFCB.AllocationSize.QuadPart / DeviceExt->FatInfo.BytesPerCluster) { Status = STATUS_INVALID_PARAMETER; goto ByeBye;