summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWei Mao <[email protected]>2023-02-28 21:30:07 -0800
committerGitHub <[email protected]>2023-02-28 21:30:07 -0800
commitc68ea4b3f8dbcd9a83da004ce74b2e7a08e872b2 (patch)
tree89bc44bcc2fce645fcb4a56d3a5df5e87ac7d620
parentdb52e5abff5dbee7d3a26a4ed867f7a6634dc1b6 (diff)
parent94211c3b2ecac957923bbfa22031f96d8fe5e0c7 (diff)
[serial/serenum] Use ExAllocatePool2 instead of ExAllocatePoolWithTag
-rw-r--r--serial/serenum/enum.c4
-rw-r--r--serial/serenum/log.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/serial/serenum/enum.c b/serial/serenum/enum.c
index feb6f4af..35ebe2ce 100644
--- a/serial/serenum/enum.c
+++ b/serial/serenum/enum.c
@@ -230,7 +230,7 @@ SerenumDoEnumProtocol(
LOGENTRY(LOG_ENUM, 'SDEP', PFdoData, PpBuf, PDSRMissing);
- pReadBuf = ExAllocatePoolWithTag(NonPagedPoolNx, MAX_DEVNODE_NAME + sizeof(CHAR) ,SERENUM_POOL_TAG);
+ pReadBuf = ExAllocatePoolZero(NonPagedPoolNx, MAX_DEVNODE_NAME + sizeof(CHAR) ,SERENUM_POOL_TAG);
if (pReadBuf == NULL) {
status = STATUS_INSUFFICIENT_RESOURCES;
@@ -1580,7 +1580,7 @@ Return Value:
length = sizeof(KEY_VALUE_FULL_INFORMATION) + KeyNameStringLength
+ DataLength;
- fullInfo = ExAllocatePoolWithTag(PagedPool, length,SERENUM_POOL_TAG);
+ fullInfo = ExAllocatePoolZero(PagedPool, length,SERENUM_POOL_TAG);
if (ActualLength != NULL) {
*ActualLength = 0;
diff --git a/serial/serenum/log.c b/serial/serenum/log.c
index 693bb698..ad834d4b 100644
--- a/serial/serenum/log.c
+++ b/serial/serenum/log.c
@@ -146,7 +146,7 @@ Return Value:
KeInitializeSpinLock(&LogSpinLock);
- SerenumLStart = ExAllocatePoolWithTag(NonPagedPoolNx, logSize, 'mneS');
+ SerenumLStart = ExAllocatePoolZero(NonPagedPoolNx, logSize, 'mneS');
if (SerenumLStart) {
SerenumLPtr = SerenumLStart;