diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2021-07-14 23:01:23 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2021-07-14 23:59:37 +0200 |
commit | b98606e390397185ada26019d538906a7b008639 (patch) | |
tree | 6193250ea45469e8c3bd44061c8c98dfee2454dd | |
parent | ad544681c7f20417691b231f330a62f9f315ed86 (diff) | |
download | VeraCrypt-b98606e390397185ada26019d538906a7b008639.tar.gz VeraCrypt-b98606e390397185ada26019d538906a7b008639.zip |
Windows: Fix compilation error of bootloader caused by introduction of strsafe.h in crypto.c
-rw-r--r-- | src/Common/Crypto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Crypto.c b/src/Common/Crypto.c index f4f6202b..ead62bb8 100644 --- a/src/Common/Crypto.c +++ b/src/Common/Crypto.c @@ -18,8 +18,8 @@ #include "Common/Endian.h" #if !defined(_UEFI) #include <string.h> -#include <strsafe.h> #ifndef TC_WINDOWS_BOOT +#include <strsafe.h> #include "EncryptionThreadPool.h" #endif #endif |