mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[NTOSKRNL]
Partial revert of r63326! The correct partition numbers cause boot failures. svn path=/trunk/; revision=63330
This commit is contained in:
parent
1a4036b369
commit
a47b155648
1 changed files with 3 additions and 1 deletions
|
@ -1655,7 +1655,9 @@ xHalIoReadPartitionTable(IN PDEVICE_OBJECT DeviceObject,
|
|||
UInt32x32To64(GET_PARTITION_LENGTH(PartitionDescriptor),
|
||||
SectorSize);
|
||||
|
||||
PartitionInfo->PartitionNumber = (!IsContainerPartition(PartitionType)) ? i : 0;
|
||||
// BUGBUGBUG: The correct partition numbers seem to cause boot failures!!!
|
||||
// PartitionInfo->PartitionNumber = (!IsContainerPartition(PartitionType)) ? i : 0;
|
||||
PartitionInfo->PartitionNumber = i + 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue