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

Windows: correct issue in handling "More information on keyfiles" link that caused a crash on some machines

This commit is contained in:
Mounir IDRASSI
2014-12-04 13:40:42 +01:00
parent 11013ce71e
commit 03afe1224a

View File

@@ -557,6 +557,7 @@ BOOL CALLBACK KeyFilesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa
if (lw == IDC_LINK_KEYFILES_INFO) if (lw == IDC_LINK_KEYFILES_INFO)
{ {
Applink ("keyfiles", TRUE, ""); Applink ("keyfiles", TRUE, "");
return 1;
} }
if (lw == IDOK) if (lw == IDOK)
@@ -574,6 +575,7 @@ BOOL CALLBACK KeyFilesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa
EndDialog (hwndDlg, IDCLOSE); EndDialog (hwndDlg, IDCLOSE);
return 1; return 1;
} }
break;
case WM_DROPFILES: case WM_DROPFILES:
{ {