1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-12 19:38:26 -06:00

Windows Driver: set Windows 10 version 1809 as minimum.

To support this, we had to replace ExAllocatePool2 by ExAllocatePoolUninitialized.
This commit is contained in:
Mounir IDRASSI
2024-12-25 16:18:19 +01:00
parent 283059523d
commit 81f0adcc35
2 changed files with 5 additions and 5 deletions

View File

@@ -261,7 +261,7 @@ void ThrowFatalException(int line);
extern ULONG AllocTag;
#define TCalloc(size) ((void *) ExAllocatePool2( POOL_FLAG_NON_PAGED, size, AllocTag ))
#define TCalloc(size) ((void *) ExAllocatePoolUninitialized( NonPagedPoolNx , size, AllocTag ))
#define TCfree(memblock) ExFreePoolWithTag( memblock, AllocTag )
#define DEVICE_DRIVER