Removed ExFreePool and Spell error.

svn path=/trunk/; revision=8934
This commit is contained in:
James Tabor 2004-03-31 05:25:36 +00:00
parent 450a15d61f
commit 22c413c3b4

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
/* $Id: disk.c,v 1.37 2004/03/31 03:39:12 jimtabor Exp $ /* $Id: disk.c,v 1.38 2004/03/31 05:25:36 jimtabor Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel * PROJECT: ReactOS kernel
@ -108,7 +108,7 @@ ScsiDiskCalcMbrCheckSum(IN PDEVICE_EXTENSION DeviceExtension,
static NTSTATUS static NTSTATUS
DiskBuildPartionTable(IN PDEVICE_OBJECT DiskDeviceObject, DiskBuildPartitionTable(IN PDEVICE_OBJECT DiskDeviceObject,
IN PIRP Irp); IN PIRP Irp);
@ -838,7 +838,7 @@ DiskClassCreateDeviceObject(IN PDRIVER_OBJECT DriverObject,
static NTSTATUS static NTSTATUS
DiskBuildPartionTable(IN PDEVICE_OBJECT DiskDeviceObject, DiskBuildPartitionTable(IN PDEVICE_OBJECT DiskDeviceObject,
IN PIRP Irp) IN PIRP Irp)
{ {
PDRIVE_LAYOUT_INFORMATION PartitionList = NULL; PDRIVE_LAYOUT_INFORMATION PartitionList = NULL;
@ -873,9 +873,6 @@ DiskBuildPartionTable(IN PDEVICE_OBJECT DiskDeviceObject,
/* Drive is not ready. */ /* Drive is not ready. */
DPRINT("Drive not ready\n"); DPRINT("Drive not ready\n");
DiskData->DriveNotReady = TRUE; DiskData->DriveNotReady = TRUE;
if (PartitionList != NULL)
ExFreePool(PartitionList);
return Status; return Status;
} }
@ -910,8 +907,6 @@ DiskBuildPartionTable(IN PDEVICE_OBJECT DiskDeviceObject,
DiskDeviceExtension->PartitionLength.QuadPart / 512 /* DrvParms.BytesPerSector*/); DiskDeviceExtension->PartitionLength.QuadPart / 512 /* DrvParms.BytesPerSector*/);
} }
} }
if (PartitionList != NULL)
ExFreePool(PartitionList);
DPRINT("DiskBuildPartitionTable() done\n"); DPRINT("DiskBuildPartitionTable() done\n");
@ -1005,7 +1000,7 @@ DiskClassDeviceControl(IN PDEVICE_OBJECT DeviceObject,
(DeviceExtension->DiskGeometry->MediaType == RemovableMedia)) (DeviceExtension->DiskGeometry->MediaType == RemovableMedia))
{ {
/* Allocate a partition list for a single entry. */ /* Allocate a partition list for a single entry. */
Status = DiskBuildPartionTable(DeviceObject,Irp); Status = DiskBuildPartitionTable(DeviceObject,Irp);
} }
if (IrpStack->Parameters.DeviceIoControl.OutputBufferLength < if (IrpStack->Parameters.DeviceIoControl.OutputBufferLength <