mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Removed ExFreePool and Spell error.
svn path=/trunk/; revision=8934
This commit is contained in:
parent
450a15d61f
commit
22c413c3b4
1 changed files with 4 additions and 9 deletions
|
@ -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: 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
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -108,7 +108,7 @@ ScsiDiskCalcMbrCheckSum(IN PDEVICE_EXTENSION DeviceExtension,
|
|||
|
||||
|
||||
static NTSTATUS
|
||||
DiskBuildPartionTable(IN PDEVICE_OBJECT DiskDeviceObject,
|
||||
DiskBuildPartitionTable(IN PDEVICE_OBJECT DiskDeviceObject,
|
||||
IN PIRP Irp);
|
||||
|
||||
|
||||
|
@ -838,7 +838,7 @@ DiskClassCreateDeviceObject(IN PDRIVER_OBJECT DriverObject,
|
|||
|
||||
|
||||
static NTSTATUS
|
||||
DiskBuildPartionTable(IN PDEVICE_OBJECT DiskDeviceObject,
|
||||
DiskBuildPartitionTable(IN PDEVICE_OBJECT DiskDeviceObject,
|
||||
IN PIRP Irp)
|
||||
{
|
||||
PDRIVE_LAYOUT_INFORMATION PartitionList = NULL;
|
||||
|
@ -873,9 +873,6 @@ DiskBuildPartionTable(IN PDEVICE_OBJECT DiskDeviceObject,
|
|||
/* Drive is not ready. */
|
||||
DPRINT("Drive not ready\n");
|
||||
DiskData->DriveNotReady = TRUE;
|
||||
|
||||
if (PartitionList != NULL)
|
||||
ExFreePool(PartitionList);
|
||||
return Status;
|
||||
}
|
||||
|
||||
|
@ -910,8 +907,6 @@ DiskBuildPartionTable(IN PDEVICE_OBJECT DiskDeviceObject,
|
|||
DiskDeviceExtension->PartitionLength.QuadPart / 512 /* DrvParms.BytesPerSector*/);
|
||||
}
|
||||
}
|
||||
if (PartitionList != NULL)
|
||||
ExFreePool(PartitionList);
|
||||
|
||||
DPRINT("DiskBuildPartitionTable() done\n");
|
||||
|
||||
|
@ -1005,7 +1000,7 @@ DiskClassDeviceControl(IN PDEVICE_OBJECT DeviceObject,
|
|||
(DeviceExtension->DiskGeometry->MediaType == RemovableMedia))
|
||||
{
|
||||
/* Allocate a partition list for a single entry. */
|
||||
Status = DiskBuildPartionTable(DeviceObject,Irp);
|
||||
Status = DiskBuildPartitionTable(DeviceObject,Irp);
|
||||
}
|
||||
|
||||
if (IrpStack->Parameters.DeviceIoControl.OutputBufferLength <
|
||||
|
|
Loading…
Reference in a new issue