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

Static Code Analysis: Correctly initialize variables to avoid false-positive detection in the boot code.

This commit is contained in:
Mounir IDRASSI
2014-07-14 17:02:16 +02:00
parent 3137d36d9a
commit f3625a080f
2 changed files with 3 additions and 3 deletions

View File

@@ -584,7 +584,7 @@ static bool CopySystemPartitionToHiddenVolume (byte drive, byte &exitKey)
sectorOffset.HighPart = 0;
int fragmentSectorCount = 0x7f; // Maximum safe value supported by BIOS
int statCount;
int statCount = 0;
if (!CheckMemoryRequirements ())
goto err;
@@ -709,7 +709,7 @@ static void DecryptDrive (byte drive)
uint64 sector = EncryptedVirtualPartition.EndSector + 1;
int fragmentSectorCount = 0x7f; // Maximum safe value supported by BIOS
int statCount;
int statCount = 0;
bool skipBadSectors = false;