VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/Tcdefs.h
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2024-12-25 16:18:19 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2024-12-25 16:18:19 +0100
commit81f0adcc35fb5a8e0d01f361f9bea4716db452ff (patch)
tree52ac1b7dad5ba84d50c40a3e757a79ca89fcd549 /src/Common/Tcdefs.h
parent283059523dd5d57f275390c0768417c00fc26adf (diff)
downloadVeraCrypt-81f0adcc35fb5a8e0d01f361f9bea4716db452ff.tar.gz
VeraCrypt-81f0adcc35fb5a8e0d01f361f9bea4716db452ff.zip
Windows Driver: set Windows 10 version 1809 as minimum.
To support this, we had to replace ExAllocatePool2 by ExAllocatePoolUninitialized.
Diffstat (limited to 'src/Common/Tcdefs.h')
-rw-r--r--src/Common/Tcdefs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Tcdefs.h b/src/Common/Tcdefs.h
index 0051dba2..48fc12b6 100644
--- a/src/Common/Tcdefs.h
+++ b/src/Common/Tcdefs.h
@@ -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