mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-24 12:03:28 +01:00
Windows driver: remove newly added volatile qualifier from CRYPT_INFO pointers to fix build issue until a better approach is devised
This commit is contained in:
parent
652e989d23
commit
405883169c
@ -44,7 +44,7 @@ typedef struct _DriveFilterExtension
|
||||
|
||||
KEVENT MountWorkItemCompletedEvent;
|
||||
|
||||
volatile CRYPTO_INFO *HeaderCryptoInfo;
|
||||
CRYPTO_INFO *HeaderCryptoInfo;
|
||||
BOOL HiddenSystem;
|
||||
|
||||
} DriveFilterExtension;
|
||||
|
@ -44,7 +44,7 @@ typedef struct
|
||||
KMUTEX BufferPoolMutex;
|
||||
EncryptedIoQueueBuffer *FirstPoolBuffer;
|
||||
|
||||
volatile CRYPTO_INFO *CryptoInfo;
|
||||
CRYPTO_INFO *CryptoInfo;
|
||||
|
||||
// File-handle-based IO
|
||||
HANDLE HostFileHandle;
|
||||
|
@ -51,7 +51,7 @@ typedef struct EXTENSION
|
||||
PFILE_OBJECT pfoDeviceFile; /* Device fileobject for this device */
|
||||
PDEVICE_OBJECT pFsdDevice; /* lower level device handle */
|
||||
|
||||
volatile CRYPTO_INFO *cryptoInfo; /* Cryptographic and other information for this device */
|
||||
CRYPTO_INFO *cryptoInfo; /* Cryptographic and other information for this device */
|
||||
|
||||
__int64 HostLength;
|
||||
__int64 DiskLength; /* The length of the disk referred to by this device */
|
||||
|
Loading…
Reference in New Issue
Block a user