1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Window: fix regression that caused only a single keyfile to be taken into account.

This commit is contained in:
Mounir IDRASSI
2016-02-11 22:57:40 +01:00
parent 7fee9a04c4
commit 89d238bb32

View File

@@ -129,7 +129,9 @@ void KeyFileCloneAll (KeyFile *firstKeyFile, KeyFile **outputKeyFile)
KeyFile *cloneFirstKeyFile = KeyFileClone (firstKeyFile); KeyFile *cloneFirstKeyFile = KeyFileClone (firstKeyFile);
KeyFile *kf; KeyFile *kf;
KeyFileRemoveAll (outputKeyFile); // free output only if different from input
if (*outputKeyFile != firstKeyFile)
KeyFileRemoveAll (outputKeyFile);
if (firstKeyFile) if (firstKeyFile)
{ {
kf = firstKeyFile->Next; kf = firstKeyFile->Next;