summaryrefslogtreecommitdiff
path: root/avstream/avshws/device.cpp
diff options
context:
space:
mode:
authorJoel Corley <[email protected]>2020-04-23 15:16:27 -0700
committerGitHub <[email protected]>2020-04-23 15:16:27 -0700
commit5408da620e6039f06de4bc68383ca29bcc209ed2 (patch)
treeb98da7a083d37b36e8270713d3d8dce7ac879759 /avstream/avshws/device.cpp
parentb8af5d7344b4ba070c9dd5e568a525b5e28d8b7d (diff)
Avshws.sys fails to build clean. Typo. (#484)
- Fix typo of ExAllocatePoolZero(). - Add PnpLockdown flag to INX file.
Diffstat (limited to 'avstream/avshws/device.cpp')
-rw-r--r--avstream/avshws/device.cpp2
1 files changed, 1 insertions, 1 deletions
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);
}
/*++