diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-01 01:53:03 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-01 01:56:13 +0200 |
commit | 55aa098295567868af26ca753e33cd9907d3b33d (patch) | |
tree | 1c1ea675b52bed065611d57bac76638ea22293ff /src/Common/Apidrvr.h | |
parent | 029341a7474ab7aa858a9f427c4c5c34713ecff0 (diff) | |
download | VeraCrypt-55aa098295567868af26ca753e33cd9907d3b33d.tar.gz VeraCrypt-55aa098295567868af26ca753e33cd9907d3b33d.zip |
Windows: fix high CPU usage when a favorite is configured to mount using VolumeID when its host device is connected to the machine.
Diffstat (limited to 'src/Common/Apidrvr.h')
-rw-r--r-- | src/Common/Apidrvr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Common/Apidrvr.h b/src/Common/Apidrvr.h index adffacc2..06f32b83 100644 --- a/src/Common/Apidrvr.h +++ b/src/Common/Apidrvr.h @@ -266,9 +266,9 @@ typedef struct BOOL TCBootLoaderDetected; BOOL DetectFilesystem; BOOL FilesystemDetected; - BOOL bMatchVolumeID; - unsigned char volumeID[VOLUME_ID_SIZE]; - BOOL VolumeIDMatched; + BOOL bComputeVolumeIDs; + unsigned char volumeIDs[TC_VOLUME_TYPE_COUNT][VOLUME_ID_SIZE]; + BOOL VolumeIDComputed[TC_VOLUME_TYPE_COUNT]; } OPEN_TEST_STRUCT; |