mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
[NTOSKRNL]
- Use the current partition descriptor to check for container partitions. Logical units in extended partitions become visible again but you cannot access them yet. This fixes the first half of bug #2564. svn path=/trunk/; revision=47799
This commit is contained in:
parent
57d80a50d5
commit
e5bc385e89
1 changed files with 1 additions and 1 deletions
|
@ -1686,7 +1686,7 @@ xHalIoReadPartitionTable(IN PDEVICE_OBJECT DeviceObject,
|
||||||
for (Entry = 1; Entry <= 4; Entry++, PartitionDescriptor++)
|
for (Entry = 1; Entry <= 4; Entry++, PartitionDescriptor++)
|
||||||
{
|
{
|
||||||
/* Check if this is a container partition, since we skipped them */
|
/* Check if this is a container partition, since we skipped them */
|
||||||
if (IsContainerPartition(PartitionType))
|
if (IsContainerPartition(PartitionDescriptor->PartitionType))
|
||||||
{
|
{
|
||||||
/* Get its offset */
|
/* Get its offset */
|
||||||
Offset.QuadPart = VolumeOffset.QuadPart +
|
Offset.QuadPart = VolumeOffset.QuadPart +
|
||||||
|
|
Loading…
Reference in a new issue