1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-08-30 13:43:16 +00:00

Update memory.cpp

This commit is contained in:
Maurice Heumann
2022-08-22 10:12:15 +02:00
committed by GitHub
parent 6253a44356
commit 620de17a01

View File

@@ -102,7 +102,7 @@ namespace memory
void* allocate_non_paged_memory(const size_t size) void* allocate_non_paged_memory(const size_t size)
{ {
void* memory = ExAllocatePoolWithTag(NonPagedPool, size, 'MOMO'); void* memory = ExAllocatePool2(NonPagedPool, size, 'MOMO');
if (memory) if (memory)
{ {
RtlSecureZeroMemory(memory, size); RtlSecureZeroMemory(memory, size);