From 2009765b6aff6cb634ad545045f249c19db467f9 Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Thu, 30 Oct 2014 07:46:25 +0000 Subject: [PATCH] [FASTFAT] Don't over-reference our FCB in case of volume opening (vfatAttachFCBToFileObject() already references it). This fixes 1st stage and beyond with IopParseDevice hack off svn path=/trunk/; revision=65118 --- reactos/drivers/filesystems/fastfat/create.c | 1 - 1 file changed, 1 deletion(-) diff --git a/reactos/drivers/filesystems/fastfat/create.c b/reactos/drivers/filesystems/fastfat/create.c index ffe23bc4edb..bccbdb77183 100644 --- a/reactos/drivers/filesystems/fastfat/create.c +++ b/reactos/drivers/filesystems/fastfat/create.c @@ -497,7 +497,6 @@ VfatCreateFile( pFcb = DeviceExt->VolumeFcb; vfatAttachFCBToFileObject(DeviceExt, pFcb, FileObject); - vfatGrabFCB(DeviceExt, pFcb); Irp->IoStatus.Information = FILE_OPENED; return STATUS_SUCCESS;