Windows: Set bPrebootPasswordDlgMode to FALSE at the correct code location.

This commit is contained in:
Mounir IDRASSI 2015-10-12 03:27:50 +02:00
parent ee3fa19ed9
commit 23b69537a5
1 changed files with 2 additions and 4 deletions

View File

@ -4600,7 +4600,7 @@ void __cdecl mountThreadFunction (void *hwndDlgArg)
HWND hwndDlg =(HWND) hwndDlgArg;
// Disable parent dialog during processing to avoid user interaction
EnableWindow(hwndDlg, FALSE);
finally_do_arg (HWND, hwndDlg, { EnableWindow(finally_arg, TRUE); });
finally_do_arg (HWND, hwndDlg, { EnableWindow(finally_arg, TRUE); bPrebootPasswordDlgMode = FALSE;});
Mount (hwndDlg, 0, 0, -1);
}
@ -7243,9 +7243,7 @@ BOOL CALLBACK MainDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
bPrebootPasswordDlgMode = TRUE;
if (CheckMountList (hwndDlg, FALSE))
_beginthread(mountThreadFunction, 0, hwndDlg);
bPrebootPasswordDlgMode = FALSE;
_beginthread(mountThreadFunction, 0, hwndDlg);
}
break;
}