From 5408da620e6039f06de4bc68383ca29bcc209ed2 Mon Sep 17 00:00:00 2001 From: Joel Corley <33107728+JoelCorley@users.noreply.github.com> Date: Thu, 23 Apr 2020 15:16:27 -0700 Subject: Avshws.sys fails to build clean. Typo. (#484) - Fix typo of ExAllocatePoolZero(). - Add PnpLockdown flag to INX file. --- avstream/avshws/avshws.inx | Bin 5944 -> 5974 bytes avstream/avshws/device.cpp | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/avstream/avshws/avshws.inx b/avstream/avshws/avshws.inx index ca763d0a..238ce187 100644 Binary files a/avstream/avshws/avshws.inx and b/avstream/avshws/avshws.inx differ diff --git a/avstream/avshws/device.cpp b/avstream/avshws/device.cpp index b0a7fb23..845e938f 100644 --- a/avstream/avshws/device.cpp +++ b/avstream/avshws/device.cpp @@ -57,7 +57,7 @@ operator new[]( ULONG tag ) { - return ExAllocatePoolWZero(poolType, iSize, tag); + return ExAllocatePoolZero(poolType, iSize, tag); } /*++ -- cgit v1.3.1