diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-27 12:27:45 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-12-27 13:39:26 +0100 |
commit | e18f3cf381223680973b5161b97312b4f12f9426 (patch) | |
tree | ec600a9c3ce1e3ebc562aef7597fc516665589d4 /src/Mount/Mount.c | |
parent | f4c864e88e7d1c2229abb4a454b769a08390abae (diff) | |
download | VeraCrypt-e18f3cf381223680973b5161b97312b4f12f9426.tar.gz VeraCrypt-e18f3cf381223680973b5161b97312b4f12f9426.zip |
Windows: use the correct parent window when changing the password of the encrypted system partition.
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 030a1184..75a9287c 100644 --- a/src/Mount/Mount.c +++ b/src/Mount/Mount.c @@ -1470,7 +1470,7 @@ void CALLBACK ChangePwdWaitThreadProc(void* pArg, HWND hwndDlg) try
{
- *pThreadParam->pnStatus = BootEncObj->ChangePassword (pThreadParam->oldPassword, pThreadParam->old_pkcs5, pThreadParam->newPassword, pThreadParam->pkcs5, pThreadParam->wipePassCount);
+ *pThreadParam->pnStatus = BootEncObj->ChangePassword (pThreadParam->oldPassword, pThreadParam->old_pkcs5, pThreadParam->newPassword, pThreadParam->pkcs5, pThreadParam->wipePassCount, hwndDlg);
}
catch (Exception &e)
{
|