diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-18 15:02:40 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2015-09-26 17:43:35 +0200 |
commit | e8ea23e71919182c3c9f38c7e444e012d263610a (patch) | |
tree | 09d7741b0cd3ad3df63aaf58787804fb7f8c9f0e /src/Mount/Mount.c | |
parent | c447b45d4541d9e46d9b5a4dcb07c10acea112d8 (diff) | |
download | VeraCrypt-e8ea23e71919182c3c9f38c7e444e012d263610a.tar.gz VeraCrypt-e8ea23e71919182c3c9f38c7e444e012d263610a.zip |
Windows: fix regression that made Favorite fail to load a logon.
Diffstat (limited to 'src/Mount/Mount.c')
-rw-r--r-- | src/Mount/Mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c index 2a4f8030..310217a2 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -6075,7 +6075,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa defaultKeyFilesParam.FirstKeyFile = KeyFileCloneAll (FirstCmdKeyFile);
}
- if (!MountFavoriteVolumes (FALSE, LogOn))
+ if (!MountFavoriteVolumes (hwndDlg, FALSE, LogOn))
exitCode = 1;
}
|