mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[MMIXER]
- Allocate memory for the logical pin array - Use the correct counter variable for logical pin array - Found by msvc svn path=/branches/cmake-bringup/; revision=50674
This commit is contained in:
parent
d33174f9de
commit
f9fead82ad
1 changed files with 9 additions and 1 deletions
|
@ -544,6 +544,14 @@ MMixerSetGetMuxControlDetails(
|
|||
ASSERT(MixerData->Topology);
|
||||
ASSERT(MixerData->MixerInfo == MixerInfo);
|
||||
|
||||
/* now allocate logical pin array */
|
||||
Status = MMixerAllocateTopologyNodeArray(MixerContext, MixerData->Topology, &LogicalNodes);
|
||||
if (Status != MM_STATUS_SUCCESS)
|
||||
{
|
||||
/* no memory */
|
||||
return MM_STATUS_NO_MEMORY;
|
||||
}
|
||||
|
||||
/* get logical pin nodes */
|
||||
MMixerGetConnectedFromLogicalTopologyPins(MixerData->Topology, MixerControl->NodeID, &LogicalNodesCount, LogicalNodes);
|
||||
|
||||
|
@ -552,7 +560,7 @@ MMixerSetGetMuxControlDetails(
|
|||
ASSERT(LogicalNodesCount == MixerControl->Control.Metrics.dwReserved[0]);
|
||||
|
||||
Values = (LPMIXERCONTROLDETAILS_BOOLEAN)MixerControlDetails->paDetails;
|
||||
for(Index = 0; Index < ConnectedNodesCount; Index++)
|
||||
for(Index = 0; Index < LogicalNodesCount; Index++)
|
||||
{
|
||||
/* getting logical pin offset */
|
||||
MMixerGetLowestLogicalTopologyPinOffsetFromArray(LogicalNodesCount, LogicalNodes, &CurLogicalPinOffset);
|
||||
|
|
Loading…
Reference in a new issue