From 4434b6bf692780b57929e5363b423101171387ed Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Tue, 26 Oct 2010 15:19:14 +0000 Subject: [PATCH] [PORTCLS] - Disable driver specific filter / pin / node property handlers until bug leading to crashes has been found svn path=/trunk/; revision=49280 --- reactos/drivers/wdm/audio/backpln/portcls/undoc.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reactos/drivers/wdm/audio/backpln/portcls/undoc.cpp b/reactos/drivers/wdm/audio/backpln/portcls/undoc.cpp index 2837123897f..08970a8564a 100644 --- a/reactos/drivers/wdm/audio/backpln/portcls/undoc.cpp +++ b/reactos/drivers/wdm/audio/backpln/portcls/undoc.cpp @@ -278,8 +278,11 @@ PropertyItemDispatch( DPRINT1("Calling Node %lu MajorTarget %p MinorTarget %p PropertySet %S PropertyId %lu PropertyFlags %lx InstanceSize %lu ValueSize %lu Handler %p PropertyRequest %p\n", PropertyRequest->Node, PropertyRequest->MajorTarget, PropertyRequest->MinorTarget, GuidBuffer.Buffer, Property->Id, Property->Flags, PropertyRequest->InstanceSize, PropertyRequest->ValueSize, PropertyRequest->PropertyItem->Handler, PropertyRequest); +#if 0 Status = PropertyRequest->PropertyItem->Handler(PropertyRequest); - +#else + Status = STATUS_NOT_FOUND; +#endif Irp->IoStatus.Information = PropertyRequest->ValueSize; if (Status != STATUS_PENDING) -- 2.17.1