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: [PATCH] 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 ca763d0a32d4833beefc6a690787c28b6f47c158..238ce1878e3ffa984fb885f8c8582b2077ddde52 100644 GIT binary patch delta 38 rcmdm?cTH~t536JVLmoo`gAYSKLo!1)Lkf^C2a4D-7;a`~H538>!6OKy delta 12 Tcmcbnw?l6O59?+vRvjS#A8rH8 diff --git a/avstream/avshws/device.cpp b/avstream/avshws/device.cpp index b0a7fb23d..845e938f4 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); } /*++