mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
- Retrieve the correct pin name
svn path=/trunk/; revision=43219
This commit is contained in:
parent
1265b9904e
commit
dfeea3b92e
1 changed files with 2 additions and 2 deletions
|
@ -487,14 +487,14 @@ KsPinPropertyHandler(
|
|||
break;
|
||||
}
|
||||
|
||||
if (!Descriptor[Pin->PinId].Category)
|
||||
if (!Descriptor[Pin->PinId].Name)
|
||||
{
|
||||
Irp->IoStatus.Information = 0;
|
||||
Status = STATUS_SUCCESS;
|
||||
break;
|
||||
}
|
||||
|
||||
Status = KspReadMediaCategory((LPGUID)Descriptor[Pin->PinId].Category, &KeyInfo);
|
||||
Status = KspReadMediaCategory((LPGUID)Descriptor[Pin->PinId].Name, &KeyInfo);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
Irp->IoStatus.Information = 0;
|
||||
|
|
Loading…
Reference in a new issue