diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-04 13:40:42 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-04 13:47:37 +0100 |
commit | 03afe1224a961ef923706250e4dae08e762e7d32 (patch) | |
tree | 1bda077812a2c4f6c01f7e96ce115f74402539e5 /src | |
parent | 11013ce71e40c9e4659935bfcdb3f6e0e6d7929b (diff) | |
download | VeraCrypt-03afe1224a961ef923706250e4dae08e762e7d32.tar.gz VeraCrypt-03afe1224a961ef923706250e4dae08e762e7d32.zip |
Windows: correct issue in handling "More information on keyfiles" link that caused a crash on some machines
Diffstat (limited to 'src')
-rw-r--r-- | src/Common/Keyfiles.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Common/Keyfiles.c b/src/Common/Keyfiles.c index 4a6baf46..88ab5ece 100644 --- a/src/Common/Keyfiles.c +++ b/src/Common/Keyfiles.c @@ -557,6 +557,7 @@ BOOL CALLBACK KeyFilesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa if (lw == IDC_LINK_KEYFILES_INFO)
{
Applink ("keyfiles", TRUE, "");
+ return 1;
}
if (lw == IDOK)
@@ -574,6 +575,7 @@ BOOL CALLBACK KeyFilesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa EndDialog (hwndDlg, IDCLOSE);
return 1;
}
+ break;
case WM_DROPFILES:
{
|