mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[ISAPNP] Properly count descriptors
Fixes random pool corruptions
This commit is contained in:
parent
2d367001bd
commit
8f36dee6ff
1 changed files with 3 additions and 3 deletions
|
@ -241,7 +241,7 @@ IsaPnpCreateLogicalDeviceResources(
|
|||
for (i = 0; i < RTL_NUMBER_OF(LogDev->Io); i++)
|
||||
{
|
||||
if (!LogDev->Io[i].CurrentBase)
|
||||
continue;
|
||||
break;
|
||||
|
||||
Descriptor = &ResourceList->List[0].PartialResourceList.PartialDescriptors[ResourceCount++];
|
||||
Descriptor->Type = CmResourceTypePort;
|
||||
|
@ -256,7 +256,7 @@ IsaPnpCreateLogicalDeviceResources(
|
|||
for (i = 0; i < RTL_NUMBER_OF(LogDev->Irq); i++)
|
||||
{
|
||||
if (!LogDev->Irq[i].CurrentNo)
|
||||
continue;
|
||||
break;
|
||||
|
||||
Descriptor = &ResourceList->List[0].PartialResourceList.PartialDescriptors[ResourceCount++];
|
||||
Descriptor->Type = CmResourceTypeInterrupt;
|
||||
|
@ -272,7 +272,7 @@ IsaPnpCreateLogicalDeviceResources(
|
|||
for (i = 0; i < RTL_NUMBER_OF(LogDev->Dma); i++)
|
||||
{
|
||||
if (LogDev->Dma[i].CurrentChannel == 4)
|
||||
continue;
|
||||
break;
|
||||
|
||||
Descriptor = &ResourceList->List[0].PartialResourceList.PartialDescriptors[ResourceCount++];
|
||||
Descriptor->Type = CmResourceTypeDma;
|
||||
|
|
Loading…
Reference in a new issue